我现在用 Django 写了一个测试的网页用于测试如果不用模板如何进行前后端信息交互,正常访问成功返回一个 json 数据,在页面中用 jquery 发出请求,出现了浏览器跨域问题,应该如何解决。
<script> $.get('http://127.0.0.1:8000/index/index',function(data){ alert('data='+data); }); </script>浏览器报错 XMLHttpRequest cannot load http://127.0.0.1:8000/index/index. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
1
KgM4gLtF0shViDH3 2017-06-23 12:33:01 +08:00 via Android
用装饰器
|
2
pixstone 2017-06-23 13:43:17 +08:00
|