fetch(FeedURL,{"mode": "no-cors"}) .then(response => response.json()) .then(function(data){ this.setState({ data: data }) }.bind(this));
另外,如果使用箭头函数,则不需要绑定(this);
fetch(FeedURL,{"mode": "no-cors"}) .then(response => response.json()) .then(data => { this.setState({ data: data }); }) .catch(resp => { console.error(resp); });