initial value in radio button django form

后端 未结 4 1125
暗喜
暗喜 2021-02-19 19:28

how can I declare initial value of radio button?

form.py

YESNO = (
    (\'Yes\',\'Yes\'),
    (\'No\', \'No\'),
)
class MyForm(forms.Form):
   like = for         


        
4条回答
  •  走了就别回头了
    2021-02-19 19:54

    Yes, this should be done in the view, but the syntax in the accepted answer is incorrect, as it will trigger field validation on all fields before submitting the form. Use instead:

    def myviews(request):
      .....
      form = MyForm(initial={'like':'Yes'})
      ...
    

提交回复
热议问题