Python中怎么使用Flask 解决跨域问题
发表于:2024-11-18 作者:千家信息网编辑
千家信息网最后更新 2024年11月18日,Python中怎么使用Flask 解决跨域问题,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。1. 引入库pip inst
千家信息网最后更新 2024年11月18日Python中怎么使用Flask 解决跨域问题1. 使用
2. 使用
Python中怎么使用Flask 解决跨域问题,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
1. 引入库
pip install flask-cors
2. 配置
flask-cors 有两种用法,一种为全局使用,一种对指定的路由使用
1. 使用 CORS函数
配置全局路由
from flask import Flask, requestfrom flask_cors import CORSapp = Flask(__name__)CORS(app, supports_credentials=True)
其中 CORS
提供了一些参数帮助我们定制一下操作。
常用的我们可以配置 origins
、methods
、allow_headers
、supports_credentials
所有的配置项如下:
:param resources: The series of regular expression and (optionally) associated CORS options to be applied to the given resource path. If the argument is a dictionary, it's keys must be regular expressions, and the values must be a dictionary of kwargs, identical to the kwargs of this function. If the argument is a list, it is expected to be a list of regular expressions, for which the app-wide configured options are applied. If the argument is a string, it is expected to be a regular expression for which the app-wide configured options are applied. Default : Match all and apply app-level configuration:type resources: dict, iterable or string:param origins: The origin, or list of origins to allow requests from. The origin(s) may be regular expressions, case-sensitive strings, or else an asterisk Default : '*':type origins: list, string or regex:param methods: The method or list of methods which the allowed origins are allowed to access for non-simple requests. Default : [GET, HEAD, POST, OPTIONS, PUT, PATCH, DELETE]:type methods: list or string:param expose_headers: The header or list which are safe to expose to the API of a CORS API specification. Default : None:type expose_headers: list or string:param allow_headers: The header or list of header field names which can be used when this resource is accessed by allowed origins. The header(s) may be regular expressions, case-sensitive strings, or else an asterisk. Default : '*', allow all headers:type allow_headers: list, string or regex:param supports_credentials: Allows users to make authenticated requests. If true, injects the `Access-Control-Allow-Credentials` header in responses. This allows cookies and credentials to be submitted across domains. :note: This option cannot be used in conjuction with a '*' origin Default : False:type supports_credentials: bool:param max_age: The maximum time for which this CORS request maybe cached. This value is set as the `Access-Control-Max-Age` header. Default : None:type max_age: timedelta, integer, string or None:param send_wildcard: If True, and the origins parameter is `*`, a wildcard `Access-Control-Allow-Origin` header is sent, rather than the request's `Origin` header. Default : False:type send_wildcard: bool:param vary_header: If True, the header Vary: Origin will be returned as per the W3 implementation guidelines. Setting this header when the `Access-Control-Allow-Origin` is dynamically generated (e.g. when there is more than one allowed origin, and an Origin than '*' is returned) informs CDNs and other caches that the CORS headers are dynamic, and cannot be cached. If False, the Vary header will never be injected or altered. Default : True:type vary_header: bool
2. 使用 @cross_origin
来配置单行路由
from flask import Flask, requestfrom flask_cors import cross_originapp = Flask(__name__)@app.route('/')@cross_origin(supports_credentials=True)def hello(): name = request.args.get("name", "World") return f'Hello, {name}!'
其中 cross_origin
和 CORS
提供一些基本相同的参数。
常用的我们可以配置 origins
、methods
、allow_headers
、supports_credentials
所有的配置项如下:
:param origins: The origin, or list of origins to allow requests from. The origin(s) may be regular expressions, case-sensitive strings, or else an asterisk Default : '*':type origins: list, string or regex:param methods: The method or list of methods which the allowed origins are allowed to access for non-simple requests. Default : [GET, HEAD, POST, OPTIONS, PUT, PATCH, DELETE]:type methods: list or string:param expose_headers: The header or list which are safe to expose to the API of a CORS API specification. Default : None:type expose_headers: list or string:param allow_headers: The header or list of header field names which can be used when this resource is accessed by allowed origins. The header(s) may be regular expressions, case-sensitive strings, or else an asterisk. Default : '*', allow all headers:type allow_headers: list, string or regex:param supports_credentials: Allows users to make authenticated requests. If true, injects the `Access-Control-Allow-Credentials` header in responses. This allows cookies and credentials to be submitted across domains. :note: This option cannot be used in conjuction with a '*' origin Default : False:type supports_credentials: bool:param max_age: The maximum time for which this CORS request maybe cached. This value is set as the `Access-Control-Max-Age` header. Default : None:type max_age: timedelta, integer, string or None:param send_wildcard: If True, and the origins parameter is `*`, a wildcard `Access-Control-Allow-Origin` header is sent, rather than the request's `Origin` header. Default : False:type send_wildcard: bool:param vary_header: If True, the header Vary: Origin will be returned as per the W3 implementation guidelines. Setting this header when the `Access-Control-Allow-Origin` is dynamically generated (e.g. when there is more than one allowed origin, and an Origin than '*' is returned) informs CDNs and other caches that the CORS headers are dynamic, and cannot be cached. If False, the Vary header will never be injected or altered. Default : True:type vary_header: bool:param automatic_options: Only applies to the `cross_origin` decorator. If True, Flask-CORS will override Flask's default OPTIONS handling to return CORS headers for OPTIONS requests. Default : True:type automatic_options: bool
配置参数说明
参数 | 类型 | Head | 默认 | 说明 |
---|---|---|---|---|
resources | 字典、迭代器或字符串 | 无 | 全部 | 配置允许跨域的路由接口 |
origins | 列表、字符串或正则表达式 | Access-Control-Allow-Origin | * | 配置允许跨域访问的源 |
methods | 列表、字符串 | Access-Control-Allow-Methods | [GET, HEAD, POST, OPTIONS, PUT, PATCH, DELETE] | 配置跨域支持的请求方式 |
expose_headers | 列表、字符串 | Access-Control-Expose-Headers | None | 自定义请求响应的Head信息 |
allow_headers | 列表、字符串或正则表达式 | Access-Control-Request-Headers | * | 配置允许跨域的请求头 |
supports_credentials | 布尔值 | Access-Control-Allow-Credentials | False | 是否允许请求发送cookie |
max_age | timedelta、整数、字符串 | Access-Control-Max-Age | None | 预检请求的有效时长 |
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注行业资讯频道,感谢您对的支持。
配置
字符
字符串
参数
路由
帮助
全局
常用
正则
表达式
e.g.
支持
问题
有效
清楚
相同
信息
内容
函数
字典
数据库的安全要保护哪些东西
数据库安全各自的含义是什么
生产安全数据库录入
数据库的安全性及管理
数据库安全策略包含哪些
海淀数据库安全审计系统
建立农村房屋安全信息数据库
易用的数据库客户端支持安全管理
连接数据库失败ssl安全错误
数据库的锁怎样保障安全
数据库sca是什么意思
数据打开后为什么连不上服务器
一罐软件开发
重庆服务器维修技术云主机
数据库有个正在还原的
国资委 网络安全等级保护
山东业务流程外贸软件开发
重庆妙享网络技术股份
广东数字化城管软件开发公司
高中信息技术知识点数据库
维护网络安全坚持
卫辉软件开发怎么样
宿州软件开发培训哪家正规
服务器系统升级
数据库中如何查询日志记录
软件开发和前端端的区别
服务器软件密钥怎么调用
博世软件开发平台
天津综合软件开发不二之选
网络安全有关英语作文
重庆电商软件开发语言
战地5服务器设置管理员
超微服务器维修中心
网店后台数据连接数据库
传统报纸销售数据库
网络安全方面是成本还是投资
学习数据库技术与应用心得
重庆电话软件开发具体地址
江阴项目软件开发价格表
收费vpn代理服务器