componentDidMount() {
this._fetchData();
}
_fetchData() {
fetch('http://rap.taobao.org/mockjs/7265/api/creations?accessToken=12')
.then(res => res.json())
.then(resJson => {
//let data = Mock.mock(resJson)
//console.log(data);
console.log(resJson)
})
.catch(err => {
console.warn(err);
})
}
请问,为什么我的这个请求在RN中老是报 Network request failed 错误,但是如果在浏览器中请求却能成功?