码迷,mamicode.com
首页 > 其他好文 > 详细

后台处理跨域

时间:2019-08-23 00:15:08      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:djang   settings   前台   setting   hit   war   注册   port   ddl   


https://github.com/ottoyiu/django-cors-headers/

安装django-cors-headers模块

在settings.py中配置
# 注册app
INSTALLED_APPS = [
‘corsheaders‘
]
# 添加中间件
MIDDLEWARE = [
‘corsheaders.middleware.CorsMiddleware‘
]

# 允许跨域源
CORS_ORIGIN_ALLOW_ALL = False
# 配置指定跨域域名
CORS_ORIGIN_WHITELIST = [
‘http://example.com‘
]

# 允许ajax请求携带cookie
CORS_ALLOW_CREDENTIALS = True


# 注:前台请求头携带参数,中间件拒绝Access-Control-Allow-Headers错误,中间件要设置 default_headers
from corsheaders import defaults
在 default_headers 中添加 ‘前端ajax请求头里面的字段名‘

后台处理跨域

标签:djang   settings   前台   setting   hit   war   注册   port   ddl   

原文地址:https://www.cnblogs.com/huikejie/p/11397391.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!