获取API response.json()导致SyntaxError:JSON.parse:意外的数据结束

时间:2017-11-19 18:28:18

标签: javascript json rest fetch-api

我试图使用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));

0 个答案:

没有答案