我试图使用fetch()调用REST服务,但我一直在
SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data
我认为我的休息服务返回的JSON有问题,所以我尝试调用一些公共REST API(https://jsonplaceholder.typicode.com/posts/1)但是我得到了同样的错误。 我做错了什么?
失败的代码:
fetch('https://jsonplaceholder.typicode.com/posts/1', {mode: 'no-cors'})
.then((resp) => resp.json())
.then((data) => console.log(data));