###前提・実現したいこと
Google App Engine(Python)で、質問サイト(teratailのようなもの)を作成しようとしています。
フレームワークとしてwebapp2、テンプレートエンジンとしてJinja2を利用しています。
質問を投稿する時に、(複数の)タグを選択して投稿してもらいたいのですが、
タグの選択がデータベースに反映されません。
質問タイトル、質問内容の投稿には成功しております。
###発生している問題・エラーメッセージ
###ソースコード
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 8class Questions(ndb.Model): 9 title = ndb.StringProperty(indexed = False) 10 content = ndb.TextProperty(indexed = False) 11 tag = ndb.KeyProperty(repeated=True,kind=Tags) 12 13#以下、テンプレートエンジンにデータを送るためのクラス 14class MainPage(webapp2.RequestHandler): 15template_values = { 16 'taglist':tags, 17} 18template = JINJA_ENVIRONMENT.get_template('index.html') 19self.response.write(template.render(template_values)) 20 21#以下、質問投稿を扱うクラス 22class Question(webapp2.RequestHandler): 23 def post(self): 24 question = Questions() 25 question.title = self.request.get('title') 26 tags = [Tags(key=t) for t in self.request.get_all('tag')] 27 question.tag = [t.key for t in tags] 28 question.content = self.request.get('content') 29 question.put()
投稿画面のテンプレートは、下記のとおりです。
該当するチェックボックスをチェックして、質問タイトルと質問内容を入力して、投稿ボタンを押すというものです。
html
1#以下、質問一覧 2{% for question in questions %} 3{{question.title}}<br> 4{{question.content}}<br> 5{% for tag in question.tag %} 6{{tag.name}} #ここに、各質問のタグを表示したい 7{% endfor %} 8 9#以下、投稿フォーム 10<form method="post" action="/sign"> 11{% for tag in taglist %} 12<input type="checkbox" name="tag" value={{tag.key.id()}}>{{tag.n ame}} 13{% endfor %} 14<input name ="title" size=100% maxlength="130" type="text"> 15<textarea cols=100% name="content" rows="13"></textarea> 16<button type="submit">submit</button> 17</form>
上記のコードにより、投稿フォームのタグのチェックボックスには、下記のように表示されるようになっており、ここまでは私の狙いどおりです。
<input type="checkbox" name="tag" value=6351328917848064>タグA
<input type="checkbox" name="tag" value=4943954034294784>タグB
……
なお、タグは、事前に登録されています。
しかし、実際に投稿すると、
BadValueError: Expected Key, got u'6351328917848064'
というエラーが生じます。
htmlのテンプレートがおかしいのか、pythonの方がおかしいのか分かりません。
なお、タグに関する部分を削除した状態では、質問タイトルも質問内容もデータベースに登録され、htmlにも表示されますので、タグに関する扱いのみが間違っていると思います。
私としては、各質問のタグを表示させるところまでやりたいです。
しかし、現時点では、タグをデータベースに登録する時点でつまづいています。
どうしたらよいかお分かりの方、よろしくお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2015/12/21 03:06
退会済みユーザー
2015/12/22 12:43
退会済みユーザー
2015/12/22 12:49
2015/12/22 13:01
2015/12/22 13:04
退会済みユーザー
2015/12/23 03:51
退会済みユーザー
2015/12/23 12:53
2015/12/24 08:59
退会済みユーザー
2015/12/24 10:41