'forms.ContactForm object' has no attribute 'hidden_tag'

前端 未结 4 2056
孤街浪徒
孤街浪徒 2021-02-13 05:53

I am trying to create a contact form using flask but keep getting this error when the page is rendered.

\'forms.ContactForm object\' has no attribute \'hidden_         


        
4条回答
  •  粉色の甜心
    2021-02-13 06:20

    I tried to fix this, too. After removing brackets "()" appended after hidden_tag, it works.

    {{ form.hidden_tag }}

提交回复
热议问题