我目前正在尝试使用WTForms
的{{1}}和FieldList
附件,以允许用户添加具有相应覆盖金额的自定义位置子集。
表单向用户显示一些标准输入,然后使用一组字段(FormField)进行初始化,每个字段都有一个位置选择输入和一个覆盖量输入。
Javascript允许用户根据需要添加或删除其他位置覆盖字段集,以反映准确的文档信息。
问题:作为解决方法,我一直在设置位置选项,方法是在表单处理程序的GET请求中传递模板变量并手动创建自己的表单字段。但是,这并不是更新实际的WTForms位置字段选项,因此当我提交表单时,会为位置字段引发异常('不是有效的选择')。
当我实例化FormField
时,如何动态地将位置选项添加到LocationForm的location
字段?
这基本上就是我的代码的外观:
注意:我省略了在GET请求中创建位置模板变量的代码,因为这不是所需的设计。我希望更符合预期的WTForms方法:
MyForm
修改
我创建了一个解决方案,但这不是我要找的答案。在我的例子中,我只是将class LocationForm(Form):
location = SelectField('Location', [], choices=[])
coverage = FloatField('Coverage', [])
class MyForm(BaseForm):
# other fields omitted for brevity
location_coverage = FieldList(FormField(LocationForm), [], min_entries=1)
class AddDocument(BaseHandler):
def get(self):
params = {
"cid": cid
}
return self.render_template("form.html", **params)
def post(self):
cid = self.request.get('cid')
if not self.form.validate():
return self.get()
company_key = ndb.Key('Company', cid)
doc = Document(parent=company_key)
self.form.populate_obj(doc)
doc.put()
params = {
"cid":
}
return self.redirect_to('view_company', **params)
@webapp2.cached_property
def form(self):
f = MyForm(self)
# HERE is where I would normally do something like:
# company = ndb.Key('Company', int(self.request.get('cid')))
# locations = ndb.Location.query(ancestor=company).fetch()
# f.field_name.choices = [(loc.key, loc.name) for loc in locations]
# but this doesn't work with Select Fields enclosed in
# FormFields and FieldLists.
return f
表单字段从SelectField更改为StringField。这样做会绕过选择字段选项的验证并允许表单提交。这并不理想,因为它不是预期的设计,但是如果有人能够引导我在这个特定场景中使用WTForms更合适的方式,我将非常感激。
答案 0 :(得分:0)
如果您的BaseForm类从实例化的帖子数据中填充表单,您应该看到嵌套表单填充在您通常直接在表单上将选项添加到SelectField中的位置。
因此像:
for entry in f.location_coverage.entries:
entry.location.choices = [(loc.key, loc.name) for loc in locations]
应将选项填充到每个子表单选择字段中。