标签:author 跨域 type 跨域请求 header smi method owa csr
settings.py
INSTALLED_APPS = [ ... ‘corsheaders‘, ... ]
MIDDLEWARE = [ ... ‘django.middleware.clickjacking.XFrameOptionsMiddleware‘, ... ]
X_FRAME_OPTIONS = ‘ALLOWALL‘ CORS_ORIGIN_ALLOW_ALL = True CORS_ALLOW_CREDENTIALS = True 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‘, )
标签:author 跨域 type 跨域请求 header smi method owa csr
原文地址:https://www.cnblogs.com/yuzhen0228/p/12015891.html