跨域设置django-cors-headers
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跨域设置django-cors-headers相关的知识,希望对你有一定的参考价值。
安装
pip install django-cors-headers
然后将其添加到已安装的应用程序中:
INSTALLED_APPS =( ... ‘ corsheaders ‘, ... )
还需要添加一个中间件类来收听响应:
MIDDLEWARE = [ #或MIDDLEWARE_CLASSES on Django <1.10 ... ‘ corsheaders.middleware.CorsMiddleware ‘, ‘ django.middleware.common.CommonMiddleware ‘, ... ]
CorsMiddleware应该放置得尽可能高,特别是在可以产生响应的任何中间件之前, 如Django CommonMiddleware或Whitenoise WhiteNoiseMiddleware。 如果以前没有,则无法将CORS头添加到这些响应中。
如果你使用CORS_REPLACE_HTTPS_REFERER,它应该放在Django之前CsrfViewMiddleware
# 允许所有主机CORS_ORIGIN_ALLOW_ALL = True
https://github.com/OttoYiu/django-cors-headers
本文出自 “13261842” 博客,请务必保留此出处http://13271842.blog.51cto.com/13261842/1967887
以上是关于跨域设置django-cors-headers的主要内容,如果未能解决你的问题,请参考以下文章
django---django-cors-headers跨域源码分析
我正在使用 angularjs 和 django-cors-headers 然后给出“这对于需要预检的跨域请求是不允许的。”