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

前端 未结 4 2069
孤街浪徒
孤街浪徒 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:16

    I just fixed this problem as well.

    Your problem is that you imported Form twice, rendering your flask-wtf Form import useless.

    from flask_wtf import Form
    from wtforms import Form, TextField, TextAreaField, SubmitField, validators
    #                   ^^^ Remove
    

    Only the flask-wtf extension has the special Form class which can handle CSRF automatically / other stuff.

提交回复
热议问题