TypeError:网络请求失败。安卓系统

时间:2019-03-22 12:01:54

标签: react-native

使用http://请求进行获取会产生错误,并且使用https://可以正常工作

例如

getData(){
  fetch('http://facebook.github.io/react-native/movies.json', {
  method: 'GET',
  headers: {
    Accept: 'application/json',
    'Content-Type': 'application/json',
  }
})
.then((response) => response.json())
    .then((responseJson) => {
       console.log('responseJson >>>>'+JSON.stringify(responseJson));

    })
   .catch((error) => {
      console.error('error>>>>>'+error);
    });

}

反应版本  “反应”:“ 16.6.3”,  “ react-native”:“ 0.58.5”

**设备已与设备浏览器网页中的网络连接。

0 个答案:

没有答案