Flask 响应之定制全局有效的错误页面,之设置cookie,头信息。
Posted zhuyafeng
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Flask 响应之定制全局有效的错误页面,之设置cookie,头信息。相关的知识,希望对你有一定的参考价值。
1.
@app.errorhandler(404)
def not_found(error):
resp = make_response(render_template(‘error.html‘),404)
return resp
这种方法更为灵活
2.
设置cookie
def func():
resp = make_reponse(‘sfwejfpwjefppwfp‘) # 一段随机字符串。。。既打包内容又打包对象
resp.set_cookie()
returen resp
3.
设置头信息
def func():
resp = make_reponse(‘sfwejfpwjefppwfp‘) # 一段随机字符串。。。既打包内容又打包对象
resp.headers[‘X-Something‘] = ‘ A value‘
returen resp
以上是关于Flask 响应之定制全局有效的错误页面,之设置cookie,头信息。的主要内容,如果未能解决你的问题,请参考以下文章