Maison > Questions et réponses > le corps du texte
如题,代码如下:
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