使用flask_wtf,提交表单打印提示"invalidate submit",也就是form.validate_on_submit()总返回False
from.validate_on_submit() 等价于 request.method==' post ' and from.validate(),理论上验证通过后提交表单后应该是True。
打印form.errors错误提示:
invalidate submit
{'csrf_token': ['The CSRF token is missing.']}
原来是 启用了CSRF token保护验证:CsrfProtect(app)#app项目加载CsrfProtect