Pre-populating a BooleanField as checked (WTForms)

后端 未结 8 3034
耶瑟儿~
耶瑟儿~ 2021-02-19 04:44

For the life of me, I can\'t figure out how to pre-populate a BooleanField with WTForms. I have a field called \"active\". It defaults to being not checked, and it\'s not requ

8条回答
  •  没有蜡笔的小新
    2021-02-19 05:32

    I had the same problem, and after hours of searching and reading, the solution was very simple.

    form = forms.TestForm(request.form)
    form.yourbooleanfield.checked = YourVariable
    
    if request.method=="POST" and form.validate():
        print(form.yourbooleanfield.data)
    

提交回复
热议问题