React Native fetch请求失败

本白在react native中使用fetch进行网络请求的时候显示请求失败。

请求部分代码如下:

fetch('../data/myjson.json')
.then(function(response){
    return response.json();
}).then(function(json){
    console.log('parsed json', json);
}).catch(function(ex){ 
   console.log('parsing failed')
});

../data/myjson.json是我的本地json文件

Thanks for all helps


慕田峪9158850
浏览 1412回答 2
2回答

慕少森

fetch 只能请求网络的吧

饮歌长啸

因为react native 本身会在目录根路径搭建了服务器,所以直接fetch('http://localhost:8081/data/myjson.json')就好了。
打开App,查看更多内容
随时随地看视频慕课网APP