首页 > 代码库 > django解决ajax跨域请求
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跨域请求
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。