Flask SelectField具有CSS的选项列表

时间:2019-09-25 04:13:07

标签: python css flask flask-wtforms wtforms

我去了很多页面,但由于代码结构不同,找不到我想要的答案。因此,我在Forms.py中有一个SelectField和选项列表。

forms.py

def list_fruits():
    temp = [('All', 'All Fruits')]
    fruits = db.session.query(Fruits.name)
    for fruit in fruits:
        temp.append((Fruits.name, Fruits.name)
    return temp

class FruitsForm(FlaskForm):
    fruits = SelectField(u'Fruits', choices=list_fruits(), default = ['All'])

我要使以'A','B'和'C'开头的选项具有红色文本。我该怎么办?

fruits.html

{{ wtf.form_field(form.fruits) }}

我还需要在views.py中做任何事情吗?

0 个答案:

没有答案