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

跨域同源问题

时间:2019-10-27 19:09:10      阅读:57      评论:0      收藏:0      [点我收藏+]

标签:中间   settings   com   led   ott   添加   问题   djang   git   


https://github.com/ottoyiu/django-cors-headers/

安装django-cors-headers模块

在settings.py中配置
# 注册app
INSTALLED_APPS = [
...
‘corsheaders‘
]
# 添加中间件
MIDDLEWARE = [
...
‘corsheaders.middleware.CorsMiddleware‘
]


# 允许跨域源
CORS_ORIGIN_ALLOW_ALL = Ture

跨域同源问题

标签:中间   settings   com   led   ott   添加   问题   djang   git   

原文地址:https://www.cnblogs.com/xiaowangba9494/p/11748283.html

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