Python, Flask: How to set response header for all responses(Python,Flask:如何为所有响应设置响应标头)
问题描述
我想将我所有的 http 标头响应设置为这样的:
I want to set all of my http headers responses to something like this:
response.headers["X-Frame-Options"] = "SAMEORIGIN"
我检查了 这个问题,但它只会改变一个特定控制器的标题.我想在类似于以下逻辑的before_request"函数中更改所有标题.我该怎么做?
I checked this question, but it only changes the header for one specific controller. I want to change all of my headers maybe in "before_request" function similar to the following logic. How can I do that?
@app.before_request
def before_request():
# response.headers["X-Frame-Options"] = "SAMEORIGIN"
推荐答案
在 @app.after_request()
钩子,此时你有一个响应对象来设置标题:
Set the header in a @app.after_request()
hook, at which point you have a response object to set the header on:
@app.after_request
def apply_caching(response):
response.headers["X-Frame-Options"] = "SAMEORIGIN"
return response
flask.request
上下文 在这个钩子运行时仍然可用,所以此时你仍然可以根据请求改变响应.
The flask.request
context is still available when this hook runs, so you can still vary the response based on the request at this time.
这篇关于Python,Flask:如何为所有响应设置响应标头的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python,Flask:如何为所有响应设置响应标头
基础教程推荐
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01