flask 给表单增加CSRF验证(flask 69)

2019-08-20 16:28:16 浏览数 (1)

app.py

from flask_wtf import CSRFProtect app = Flask(name) csrf = CSRFProtect(app)

页面

<input type="hidden" name="csrf_token" value="{{ csrf_token() }}"/>

自定义CSRF错误响应

@app.errorhandler(CSRFError) def handle_csrf_error(e): return render_template('errors/400.html', description=e.description), 400

0 人点赞