简体   繁体   English

使用wtforms和flask在selectfield中设置默认值

[英]Setting a default value in the selectfield, using wtforms and flask

I am creating a product edit form and I need the form to be pre-populated with the previous data. 我正在创建一个产品编辑表单,我需要预先填充以前的数据表单。

I am doing the following: 我正在做以下事情:

Product(form):
    product = TextField('name')
    category = SelectField('category', choice=[(1,'one'),(2,'two')])

In the view: 在视图中:

form.product.data = 'A product name from the database'
form.category.data = 'a category name' #This does not work

The issue is with the SelectField. 问题出在SelectField上。

I understand there is a 'default' value I can set on SelectField. 我知道我可以在SelectField上设置一个'默认'值。 However, this happens in the form definition class and there I do not have the query object from sqlalchemy yet. 但是,这发生在表单定义类中,并且我还没有来自sqlalchemy的查询对象。

So, is there a way to append a default on selectfield on run time? 那么,有没有办法在运行时在selectfield上添加默认值?

If you want set default value to render page with form you can create own form or set value: 如果要将默认值设置为使用表单呈现页面,则可以创建自己的表单或设置值:

class Product(Form):
    product = TextField('name')
    category = SelectField('category', choices=[(1,'one'),(2,'two')])

# create instance with predefined value:
form1 = Product(category=2)
# form1.product == <input id="product" name="product" type="text" value="">
# form1.category == <select id="category" name="category">
#                     <option value="1">one</option>
#                     <option selected value="2">two</option>
#                   </select>
# from1.product.data == None
# form1.category.data == 2

# create own form if it need many times:
Product2 = type('Product2', (Product,), {
    'category': SelectField('category', default=2, choices=[(1,'one'),(2,'two')])
})
form2 = Product2()
# form2.product == <input id="product" name="product" type="text" value="">
# form2.category == <select id="category" name="category">
#                     <option value="1">one</option>
#                     <option selected value="2">two</option>
#                   </select>
# from2.product.data == None
# form2.category.data == 2

If you want set default form data on request: 如果要根据请求设置默认表单数据:

with app.test_request_context(method='POST'):
    form = Product(request.form)
    # form5.category.data == None

    form = Product(request.form, category=2)
    # form5.category.data == 2

with app.test_request_context(method='POST', data={'category': 1}):
    form = Product(request.form)
    # form5.category.data == 1

    form = Product(request.form, category=2)
    # form5.category.data == 1

From the WTForms documentation 来自WTForms文档

Note that the choices keyword is only evaluated once, so if you want to make a dynamic drop-down list, you'll want to assign the choices list to the field after instantiation. 请注意,choices关键字仅评估一次,因此如果要创建动态下拉列表,则需要在实例化后将选项列表分配给字段。

Product(form):
    product = TextField('name')
    category = SelectField('category')

And then in your view say 然后在你看来说

form.category.choices = [list of choices with chosen data]

More detail found here: http://wtforms.simplecodes.com/docs/0.6.1/fields.html#wtforms.fields.SelectField 更多详细信息请访问: http//wtforms.simplecodes.com/docs/0.6.1/fields.html#wtforms.fields.SelectField

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

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