javascript – 获取no-cors意外的输入结束

前端之家收集整理的这篇文章主要介绍了javascript – 获取no-cors意外的输入结束前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
使用react和webpack ..为什么下面的代码会导致错误:Uncaught(在promise中)SyntaxError:意外的输入结束(…)?谢谢
fetch(FeedURL,{"mode": "no-cors"})
    .then(response => response.json())
    .then(function(data){

        this.setState({
            data: data
        })

    }.bind(this));

解决方法

为了更好地理解您的错误,请在抓取请求中添加一个catch案例.

另外,如果使用箭头函数,则不需要绑定(this);

fetch(FeedURL,{"mode": "no-cors"})
.then(response => response.json())
.then(data => {
    this.setState({
        data: data
    });
})
.catch(resp => {
    console.error(resp);
});
原文链接:https://www.f2er.com/js/157401.html

猜你在找的JavaScript相关文章