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

Django设置允许跨域请求

时间:2020-03-20 12:25:11      阅读:45      评论:0      收藏:0      [点我收藏+]

标签:文件   rsh   option   red   setting   enc   csr   settings   token   

1. 安装模块django-cors-headers
pip3 install django-cors-headers

2. 配置django项目的settings.py文件

配置INSTALLED_APPS

INSTALLED_APPS = [
    ...,
    ‘corsheaders‘
]

配置中间件, 注意顺序

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

再settings.py文件末尾添加下面内容

‘‘‘
跨域设置
‘‘‘
CORS_ALLOW_CREDENTIALS = True
CORS_ORIGIN_ALLOW_ALL = True
CORS_ORIGIN_WHITELIST = ()

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

CORS_ALLOW_HEADERS = (
    ‘accept‘,
    ‘accept-encoding‘,
    ‘authorization‘,
    ‘content-type‘,
    ‘dnt‘,
    ‘origin‘,
    ‘user-agent‘,
    ‘x-csrftoken‘,
    ‘x-requested-with‘,
)

Django设置允许跨域请求

标签:文件   rsh   option   red   setting   enc   csr   settings   token   

原文地址:https://blog.51cto.com/14284354/2480299

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