标签:跨域 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‘, )
标签:跨域 enc red 模块 xmlhttp sage class type http
原文地址:https://www.cnblogs.com/lab-zj/p/12024345.html