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

django应用之corsheaders[跨域设置]

时间:2019-01-14 16:34:04      阅读:271      评论:0      收藏:0      [点我收藏+]

标签:cors   get   www.   head   hit   style   cookie   color   local   

安装

pip install django-cors-headers


注册应用

INSTALLED_APPS = (
...
corsheaders,
...
)

中间层设置

 

MIDDLEWARE = [  
    ...
    corsheaders.middleware.CorsMiddleware,
    django.middleware.common.CommonMiddleware,
    ...
]

 

添加白名单

# CORS 设置跨域域名
CORS_ORIGIN_WHITELIST = (
127.0.0.1:8080,
localhost:8080,
www.xxxx.com:8080,
api.xxxx.com:8000
)
CORS_ALLOW_CREDENTIALS = True # 允许携带cookie

ALLOWED_HOSTS = [‘www.xxxx.com:8080‘,‘api.xxxx.com:8000‘,‘127.0.0.1‘]

# 前端需要携带cookies访问后端时,需要设置
withCredentials: true

设置允许访问的方法( 已测,没用 )

CORS_ALLOW_METHODS = (
GET,
POST,
PUT,
PATCH,
DELETE,
OPTIONS
)

设置允许的header:(未测)

CORS_ALLOW_HEADERS = (
x-requested-with,
content-type,
accept,
origin,
authorization,
x-csrftoken
)

 

django应用之corsheaders[跨域设置]

标签:cors   get   www.   head   hit   style   cookie   color   local   

原文地址:https://www.cnblogs.com/Skyda/p/10267359.html

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