详细信息请拜读网址:https://github.com/ottoyiu/django-cors-headers/
安装:
在virtaulenv环境中执行
pip install django-cors-headers
配置(简配):
进入项目中,打开settings.py文件,在INSTALLED_APPS中加入
INSTALLED_APPS = (
//位置无关先后
'corsheaders',
)
在MIDDLEWARE_CLASSES中加入
MIDDLEWARE_CLASSES = (
'corsheaders.middleware.CorsMiddleware',
//注意上面的中间件放在下面的中间件的上面
'django.middleware.common.CommonMiddleware',
)
然后在settings.py文件中加入
CORS_ORIGIN_ALLOW_ALL = True
这时候所有的地址都可以访问我们的服务器
在此感谢github大神的贡献。。。