我正在使用Flask和WTForms。 我有一个观点:
@app.route('/test/<bar>')
def foo(bar):
form = SomeForm():
if form.validate_on_submit():
query = User(somedata = form.somedata.data,
another_data = form.anotherdata.data)
db.session.add(query)
db.session.commit()
flash('ok')
return redirect(url_for('main.index'))
return render_template('test.html', form=form, bar=bar)
和表格:
#imports here
class SomeForm(Form):
ch1 = SomeTable.query.filter_by(age='1').all()
choice1 = SelectField('Select data', choices=[(e.name, e.name) for e in ch1])
我需要变量&#39; bar&#39;从我的视图中,并在我的表单中显示,以在表单的选择字段中使用2个条件(年龄和条形)进行查询。
答案 0 :(得分:1)
在__init__
中执行此操作,而不是在定义表单类时执行此操作。
class SomeForm(Form):
def __init__(self, bar, *args, **kwargs):
ch1 = SomeTable.query.filter_by(bar=bar)
self.choice1.kwargs['choices'] = tuple((e.name, e.name) for e in ch1)
super(SomeForm, self).__init__(*args, **kwargs)
然后在视图中:
form = SomeForm(bar)