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

Django解决跨域问题

时间:2019-12-11 18:59:22      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:跨域   enc   red   模块   xmlhttp   sage   class   type   http   

搬运: https://www.cnblogs.com/vipchenwei/p/7866470.html

1.安装django-cors-headers模块

2.在INSTALLED_APPS中注册  corsheaders

技术图片
INSTALLED_APPS = [
    ‘django.contrib.admin‘,
    ‘django.contrib.auth‘,
    ‘django.contrib.contenttypes‘,
    ‘django.contrib.sessions‘,
    ‘django.contrib.messages‘,
    ‘django.contrib.staticfiles‘,
    ‘app01.apps.App01Config‘,
    ‘corsheaders‘,
]
技术图片

3.在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 = (
    ‘XMLHttpRequest‘,
    ‘X_FILENAME‘,
    ‘accept-encoding‘,
    ‘authorization‘,
    ‘content-type‘,
    ‘dnt‘,
    ‘origin‘,
    ‘user-agent‘,
    ‘x-csrftoken‘,
    ‘x-requested-with‘,
    ‘Pragma‘,
)

Django解决跨域问题

标签:跨域   enc   red   模块   xmlhttp   sage   class   type   http   

原文地址:https://www.cnblogs.com/lab-zj/p/12024345.html

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