我正在http://facebook.github.io/react-native/docs/tutorial.html#fetching-real-data处理反应原生教程,并在添加函数
之后fetchData: function() {
fetch(REQUEST_URL)
.then((response) => response.json())
.then((responseData) => {
this.setState({
movies: responseData.movies,
});
})
.done();
},
到AwesomeProject对象,然后重新加载iOS模拟器,我收到错误JSON Parse error: Unexpected identifier "Not"
。由于我没有写任何JSON,我不知道这个错误可能来自哪里。
答案 0 :(得分:4)
我错过了REQUEST_URL中的一个角色。因此,对该URL的请求返回404 Not Found
,其中第一个非json令牌当然是Not
。我通过在网址上运行curl
来确定这一点,但您也可以通过在浏览器中访问该网址进行检查。