使用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”
**设备已与设备浏览器网页中的网络连接。