django解决ajax跨域请求

发布时间:2020-06-27 10:19:58 作者:dongfeng012
来源:网络 阅读:1862

由于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;


推荐阅读:
  1. Ajax 跨域请求
  2. Ajax 跨域请求-- Cross Domain

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

ajax django 跨域请求

上一篇:DNS Doctoring NAT NAT-Hairping

下一篇:Ruby Version Manager (RVM)

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》