更新于:
flask-wtf提示400,难受,想哭
#你懂得,不写全部代码了
from flask_wtf.csrf import CSRFProtect
csrf = CSRFProtect()
csrf.init_app(app)
#form 部分
from flask_wtf import FlaskForm
如果按照以上设置之后还是400的话,看看是不是设置了下面参数,下面参数使cookie工作在https下
SESSION_COOKIE_SECURE = True
转载请注明:【flask-wtf The CSRF session token is missing】https://jihuo.ma/flask-wtf-400.html