我正在使用 Flask-WTF 表单,我有以下代码:
在forms.py中
class DealForm( Form ):
country = SelectField( 'Country' )
在 main.py
if not form.validate_on_submit():
form = DealForm()
form.country.choices = [('us','USA'),('gb','Great Britain'),('ru','Russia')]
return render_template( 'index.html', user = current_user, form = form )
else:
return render_template( 'index.html', form = form )
当我从 POST 返回时出现错误,因为 country.choices 是 None 我做错了什么?