繁体   English   中英

Flask WTForms BooleanField UnboundField

[英]Flask WTForms BooleanField UnboundField

我正在编写一个通常从数据库中检索 5 行的脚本,我想将其显示为复选框列表。

但它没有正确显示:它说“ UnboundField ”

表单.py

class ExampleForm(FlaskForm):
    [...query & results...]
    for line in results_sql:
        list_checkbox[line.label] = BooleanField(line.label)

路线.py

@bp.route('/example')
def example():
    form = ExampleForm()
    return render_template("index.html", form=form)

索引.html

<table class="table table-bordered table-condensed">
    {% for checkbox in form.list_checkbox %}
    <tr>
        <td>{{ checkbox }}</td>
        <td>{{ form.list_checkbox[checkbox ] }}</td>
    </tr>
    {% endfor %}
</table>

结果:

渲染表

您已将字段放入嵌套字典中。 表单不能绑定这样的字段,因为它不能处理任意容器。

相反,您需要将字段放在字段外壳中 我会使用一个FormField()字段来指向一个嵌套的Form类。 您可以通过调用BaseForm()构造函数来生成嵌套的Form类:

BaseForm提供的是一个字段集合的容器,它将在实例化时绑定,并保存在内部字典中。 BaseForm 实例上的字典式访问将允许您访问(和修改)封闭的字段。

然后,当您创建ExampleForm()类的实例时,它将绑定FormField字段,然后该字段又会创建嵌套表单对象的实例,然后绑定您提供给BaseForm()每个字段

因为调用BaseForm(fields)将创建一个表单实例,您需要先将其包装在一个函数中,然后才能将其用作嵌套表单:

def form_from_fields(fields):
    def create_form(prefix='', **kwargs):
        form = BaseForm(fields, prefix=prefix, meta=FlaskForm.Meta)
        form.process(**kwargs)
        return form
    return create_form

class ExampleForm(FlaskForm):
    # ...

    list_checkbox = FormField(
        form_from_fields(
            [(line.label, BooleanField(line.label)) for line in results_sql]
        )
    )

BaseForm()不像Form类那样接受任何数据,因此您需要在返回实例之前将FormField()传递给 create 实例的参数传递给.process()方法。

渲染时迭代list_checkbox字段,直接获取字段,从字段对象获取标签:

<table class="table table-bordered table-condensed">
    {% for checkbox in form.list_checkbox %}
    <tr>
        <td>{{ checkbox.label }}</td>
        <td>{{ checkbox }}</td>
    </tr>
    {% endfor %}
</table>

Demo(使用基础WTForms库,但Flask-WTF流程是一样的):

>>> from wtforms.form import BaseForm, Form
>>> from wtforms.fields import BooleanField, FormField
>>> fields = ['Calendrier', 'Commentaire', 'Dessin', 'Ex-libris', 'Gravure']
>>> def form_from_fields(fields):
...     def create_form(prefix='', **kwargs):
...         form = BaseForm(fields, prefix=prefix)
...         form.process(**kwargs)
...         return form
...     return create_form
...
>>> class ExampleForm(Form):
...     list_checkbox = FormField(form_from_fields([(field, BooleanField(field)) for field in fields]))
...
>>> form = ExampleForm()
>>> form.list_checkbox
<wtforms.fields.core.FormField object at 0x1232a76d8>
>>> list(form.list_checkbox)
[<wtforms.fields.core.BooleanField object at 0x1232a77f0>, <wtforms.fields.core.BooleanField object at 0x1232a78d0>, <wtforms.fields.core.BooleanField object at 0x1232a7978>, <wtforms.fields.core.BooleanField object at 0x1232a7a20>, <wtforms.fields.core.BooleanField object at 0x1232a7ac8>]
>>> print(*form.list_checkbox, sep='\n')
<input id="list_checkbox-Calendrier" name="list_checkbox-Calendrier" type="checkbox" value="y">
<input id="list_checkbox-Commentaire" name="list_checkbox-Commentaire" type="checkbox" value="y">
<input id="list_checkbox-Dessin" name="list_checkbox-Dessin" type="checkbox" value="y">
<input id="list_checkbox-Ex-libris" name="list_checkbox-Ex-libris" type="checkbox" value="y">
<input id="list_checkbox-Gravure" name="list_checkbox-Gravure" type="checkbox" value="y">

然后FormField()字段还确保您可以为表单设置默认值,或者您可以在再次发布表单时访问数据集:

>>> form = ExampleForm(list_checkbox={'Calendrier': True})
>>> print(form.list_checkbox['Calendrier'])
<input checked id="list_checkbox-Calendrier" name="list_checkbox-Calendrier" type="checkbox" value="y">
>>> print(form.list_checkbox['Commentaire'])
<input id="list_checkbox-Commentaire" name="list_checkbox-Commentaire" type="checkbox" value="y">

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM