###前提・実現したいこと
Google App Engine(Python)で、アプリを開発しています。
Google App EngineのUserで認証を行って、ログインした人の名前を表示したいです。
https://cloud.google.com/appengine/docs/python/users/
ユーザーがログインしている場合、UserにはGoogleメールアドレスが登録されます。
このUserというのは、Google App EngineのAPIです。
一方、Personというモデルに、個人の名前とメールアドレスを登録しています。
そこで、UserのメールアドレスとPersonのメールアドレスを照合すれば、ログインしているユーザーの名前を引っ張ってくることができると考えました。
###発生している問題・エラーメッセージ
現状の下記コードでは、下記のようなエラーが発生します。
TypeError: init() got an unexpected keyword argument 'email'
###ソースコード
python
1#ユーザー情報を扱うモデル 2class Person(ndb.Model): 3 userName = ndb.StringProperty() #ログインしているときに、このuserNameを表示したいです。 4 email = ndb.StringProperty() 5 6#メインページを扱うクラス 7class MainPage(webapp2.RequestHandler): 8 def get(self): 9 currentUser = users.get_current_user().email 10 11 test = Person.query(email = currentUser).get() #ここが問題だと思います。 12 13 template_values = { 14 'currentUser': currentUser, 15 'test': test, 16 } 17 template = JINJA_ENVIRONMENT.get_template('index.html') 18 self.response.write(template.render(template_values)) 19
html
1#index.html 2{{currentUser}} /*ここには、「test@example.com」が表示されている。*/ 3{{test.userName}} /*ここにユーザーの名前を表示したいです。*/ 4
###補足情報(言語/FW/ツール等のバージョンなど)
フレームワークはwebapp2、テンプレートエンジンはJinja2を利用しています。
なお、
python
1test = Person.query().get()
とすると、エラーは表示されず、
Person(key=Key('Person', 6310509548666880), businessCategory=None, email=None, identity=None, jobCategory=None, prefecture=Key('Prefecture', '6296903092273152'), selfIntroduction='\xe3\x82\x88\xe3\x82\x8d\xe3\x81\x97\xe3\x81\x8f\xe3\x81\x8a\xe9\xa1\x98\xe3\x81\x84\xe3\x81\x97\xe3\x81\xbe\xe3\x81\x99\xe3\x80\x82', userName=u'test@example.com', workFor=None)
と表示されます。
また、
http://d.hatena.ne.jp/artgear/20120609/1339254103
にならって、
python
1test = db.Query(Person).filter('email=',user)
とすると、
AttributeError: type object 'Person' has no attribute '_unindexed_properties'
というエラーが出てしまいます。
emailで絞り込む方法が分かればありがたいです。
お分かりの方、ご教示頂ければ幸いです。
よろしくお願いします。
あなたの回答
tips
プレビュー