私は WTForms を使用していますが、非表示のフィールドが値を返さないという問題がありますが、ドキュメントにはそうすべきだと書かれています。簡単な例を次に示します。
フォーム.py:
from wtforms import (Form, TextField, HiddenField)
class TestForm(Form):
fld1 = HiddenField("Field 1")
fld2 = TextField("Field 2")
実験.html:
{% from "_formshelper.html" import render_field %}
<html>
<body>
<table>
<form method=post action="/exp">
{% for field in form %}
{{ render_field(field) }}
{% endfor %}
<input type=submit value="Post">
</form>
</table>
</body>
</html>
(render_field はラベル、フィールド、エラーを td タグに入れるだけです)
実験.py:
from flask import Flask, request, render_template
from templates.forms import *
from introspection import *
app = Flask(\__name__)
app.config.from_object(\__name__)
db_session = loadSession()
@app.route('/exp', methods=['POST', 'GET'])
def terms():
mydata = db_session.query(Peter).one()
form = TestForm(request.form, mydata)
if request.method == 'POST' and form.validate():
return str(form.data)
return render_template('experiment.html', form = form)
if __name__ == '__main__':
app.run(debug = True)
mydata は、fld1 と fld2 の 2 つのフィールドを持つテーブルから唯一の行を返します。fld1 は整数自動インクリメント フィールドです。フォームにはそのデータが取り込まれているため、experiment.py を実行すると、フォームを送信すると次のようになります。
{'fld2': u'blah blah blah', 'fld1': u'1'}
しかし、fld1 を HiddenField に変更すると、submit を押すと、次のようになります: {'fld2': u'blah blah blah', 'fld1': u''}
私は何を間違っていますか?