我正在使用带有 WTforms 的烧瓶来编辑来自基于 python-eve 的 API 的数据我从 API 获取此对象(请注意“_id”和“_etag”:
{
"_updated": "Sun, 06 Apr 2014 12:49:11 GMT",
"name": "moody",
"question": "how are you?",
"_links": {
"self": {
"href": "127.0.0.1:5000/surveys/533e9f88936aa21dd410d4f1",
"title": "Survey"
},
"parent": {
"href": "127.0.0.1:5000",
"title": "home"
},
"collection": {
"href": "127.0.0.1:5000/surveys",
"title": "surveys"
}
},
"_created": "Fri, 04 Apr 2014 12:03:20 GMT",
"_id": "533e9f88936aa21dd410d4f1",
"_etag": "7d11e7f57ed306043d76c05257474670eccde91c"
}
我想在 WTForm 中编辑对象,所以我创建了定义表单:
class surveyForm(Form):
_id = HiddenField("_id")
_etag = HiddenField("_etag")
name = TextField("Name")
question = TextField("question")
submit = SubmitField("Send")
启动表格:
obj = getSurvey(id) # here I get the object from the API
form = surveyForm(**obj)
return render_template('surveyAdd.html', form=form)
并呈现表单:
<form class="form-horizontal" role="form" action="{{ url_for('surveyAddOrEdit') }}" method=post>
{{ form.hidden_tag() }}
{{ form._id }}
{{ form._etag }}
{{ form.name.label }}
{{ form.name(class="form-control") }}
{{ form.question.label }}
{{ form.question(class="form-control") }}
{{ form.submit(class="btn btn-default") }}
</form>
结果是:
<form class="form-horizontal" role="form" action="/survey/add" method="post">
<div style="display:none;"><input id="csrf_token" name="csrf_token" type="hidden" value="1396959127.36##dc263965e20ecc9956fc25d5b5c96f90f311cf47"></div>
<UnboundField(HiddenField, ('_id',), {})>
<UnboundField(HiddenField, ('_etag',), {})>
<label for="name">Name</label>
<input class="form-control" id="name" name="name" type="text" value="moody">
<label for="question">question</label>
<input class="form-control" id="question" name="question" type="text" value="how are you?">
<input class="btn btn-default" id="submit" name="submit" type="submit" value="Send">
糟糕……隐藏的“_id”字段和“_etag”字段不会被渲染。我只是得到一个 UnboundField 通知,下划线有条纹,这就是问题所在。
我认为如果我可以直接从 API 加载对象并将其加载到表单中,并在编辑后将其直接反馈回 API,那将是最佳选择......但由于剥离了 uderscores,我不能这样做。相反,我改变了对象——将“_id”重命名为“id”,将“_etag”重命名为“etag”——这样就可以了。
所以我有两个问题:
- 有没有办法将对象直接放入表单而不改变它们
- 与 API 交互的推荐方式是什么。拥有加载和清理对象的客户端方法是否更好
干杯!