###前提・実現したいこと
Google App Engine(Python)で、質問サイト(teratailのようなもの)を作成しようとしています。
フレームワークとしてwebapp2、テンプレートエンジンとしてJinja2を利用しています。
質問を投稿する時に、(複数の)タグを選択して投稿してもらいたいです。
投稿後、データベースへの反映はうまくいっていると思います。
問題は、質問一覧の表示画面です。
テンプレートエンジンを通じて、htmlに投稿結果を表示するときに、そのタグ名を表示することができていません。
###発生している問題・エラーメッセージ
下記は、質問タイトル:「test」、質問本文:「test」、タグ:「タグA」、「タグB」選択して投稿した後の、質問一覧です。赤枠で囲ったところに、「タグA タグB」と表示したいです。
GAEのKeyPropertyのデータの取得・表示の仕方が分かっていないということです。
###ソースコード
python
1#タグを扱うデータモデル 2class Tags(ndb.Model): 3 id = ndb.IntegerProperty(indexed=True) 4 name = ndb.StringProperty(indexed=False) 5 6tags = Tags.query().order(Tags.id) 7 8#質問を扱うデータモデル 9class Questions(ndb.Model): 10 title = ndb.StringProperty(indexed = False) 11 content = ndb.TextProperty(indexed = False) 12 tag = ndb.KeyProperty(repeated=True,kind=Tags) 13 date = ndb.DateTimeProperty(auto_now_add = True) 14 15#メインページを扱うクラス 16class MainPage(webapp2.RequestHandler): 17 question_query = Questions.query().order(-Questions.date) 18 questions = question_query.fetch(10) 19 template_values = { 20 'questions': questions, 21 'taglist':tags, 22 template = JINJA_ENVIRONMENT.get_template('index.html') 23 self.response.write(template.render(template_values)) 24 25#質問投稿を扱うクラス 26class Question(webapp2.RequestHandler): 27 def post(self): 28 question = Questions() 29 question.title = self.request.get('title') 30 question.tag = [ndb.Key(Tags,t) for t in self.request.get_all('tag')] 31 question.content = self.request.get('content') 32 question.put()
テンプレートは、下記のとおりです。
html
1#質問一覧を表示 2#index.html 3{% for question in questions %} 4<h4>{{question.title}}</h4> 5<div>{{question.content}}</div> 6<div> 7{% for tag in question.tag %} 8 {{tag}} <!--ここに、タグ名が表示されて欲しいです。--> 9{% endfor %} 10</div> 11 12#以下、質問投稿フォーム 13<h3>質問投稿はこちらから</h3> 14<form method="post" action="/sign"> 15{% for tag in taglist %} 16<input type="checkbox" name="tag" value={{tag.key.id()}}>{{tag.n ame}} 17{% endfor %} 18<input name ="title" size=100% maxlength="130" type="text"> 19<textarea cols=100% name="content" rows="13"></textarea> 20<button class"btn btn-default" type="submit">submit</button> 21</form>
###補足情報(言語/FW/ツール等のバージョンなど)
ちなみに、
{{tag.get().name}}とすると、何も表示されないです。
{{tag.get()}}とすると、Noneと表示されます。
Jinja2だけの問題なのか分からないですのですが、
この場所に、タグ名が表示されるようにしたいです。
お分かりの方、ご教示頂ければ幸いです。
よろしくお願いします。
あなたの回答
tips
プレビュー