Home > Q&A > body text
如题,代码如下:
const URL = 'http://api.xx.com/?q=' let req = URL + word fetch(req) .then(res => res.json()) .then(res => console.log(res) .catch(err => console.log(err)
在本地调试的时候,由于跨域不能访问,请问跨域的情况下该如何使用fetch
fetch
伊谢尔伦2017-04-10 16:22:12
你的http://api.xx.com/?q=返回header里有正确设置Access-Control-Allow-Origin 吗?
http://api.xx.com/?q=
Access-Control-Allow-Origin