码迷,mamicode.com
首页 > Web开发 > 详细

django解决ajax跨域请求

时间:2017-03-09 15:45:07      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:django   ajax   跨域请求   

由于jquery禁止通过ajax进行跨域请求,所以在通过ajax请求另外一个不同域名服务api的时候会报错:“No ‘Access-Control-Allow-Origin‘ header is present on the requested resource. Origin ‘null‘ is therefore not allowed access”


最简单的两个解决办法:

1、在django中return的时候设置

def xxxxx(request):
        ....
    resp = HttpResponse(json.dumps({‘code‘:code,‘msg‘:msg,‘data‘:data},ensure_ascii=False))
    resp["Access-Control-Allow-Headers"] = "*"
    return resp

2、在nginx中设置

      add_header Access-Control-Allow-Origin *;
      add_header Access-Control-Allow-Headers X-Requested-With;
      add_header Access-Control-Allow-Methods GET,POST,OPTIONS;


django解决ajax跨域请求

标签:django   ajax   跨域请求   

原文地址:http://4988084.blog.51cto.com/4978084/1904739

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