Get choices from a DataBase query in wtforms and flask-sqlalchemy
问题 I'm developing a web app using Flask, SQLAlchemy and WTForms. I would like to get my choices in a SelectField from a query through my DB. With more details. my_query = my_table.query.with_entities(My_Entities).all() Result [(u'1',), (u'2',), (u'3',)] My class class MyForm(Form): My_Var = SelectField(choices=RIGHT_HERE) Is there any way ? 回答1: In this situation what you can do is use the extensions that are in WTForms. What you do is import the QuerySelectField that you need: from wtforms.ext