我是新手,我希望将下拉列表添加到具有预定义值(不从数据库获取)的表单中。我创建了一个模型如下。
class DeliveryDetails(Model):
_tablename_ = 'deliverydetails'
id = Column(Integer, primary_key=True)
customer_name = Column(String(250), nullable=False)
delivery_type = Column(String(250), nullable=False)
观点如下。
class DeliveryDetailsView(ModelView, DeleteMixin):
datamodel = SQLAInterface(models.DeliveryDetails)
list_columns = ['customer_name','delivery_type']
search_columns = ['customer_name','delivery_type']
edit_columns = ['customer_name','delivery_type']
add_columns = edit_columns
label_columns = {
'customer_name': _("Customer Name"),
'delivery_type': _("Delivery Type") }
我想在下拉列表中将Air, Land, Sea
显示为Delivery Types
。请让我知道是否可以像我提到的那样做?
答案 0 :(得分:2)
您可以使用WTF forms。在您的WTF表格中使用以下字段:
dropdown_list = ['Air', 'Land', 'Sea'] # You can get this from your model
seqSimilarity = SelectField('Delivery Types', choices=dropdown_list, default=1)
<强>替代地强>:
如果您正在使用jinja模板并希望在没有WTF表单的情况下执行此操作,那么您可以将dropdown_list
作为参数传递给render_template()。最后,只需遍历列表并在HTML中创建选择。
在视图文件中:
@app.route("/url_you_want")
def view_method():
dropdown_list = ['Air', 'Land', 'Sea']
return render_template('your_template.html', dropdown_list=dropdown_list)
然后在 your_template.html
中<select>
{% for each in dropdown_list %}
<option value="{{each}}">{{each}}</option>
{% endfor %}
</select>