“React Native 'fetch()'网络请求失败:”的原因和解决方案
在 React 中使用 fetch() API原生项目使用 发出网络请求时可能会收到“网络请求失败”错误>
fetch('http://facebook.github.io/react-native/movies.json') .then((response) => response.json()) .then((responseJson) => { return responseJson.movies; }) .catch((error) => { console.error(error); });要解决此问题,请使用 [info.plist](https://developer.apple.com/library/archive/) Documentation/General/Reference/InfoPlistKeyReference/Articles/iPhoneOSKeys.html#//apple_ref/doc/uid/TP40009251-SW8) 以允许 HTTP 请求
。
以上是为什么我的 React Native `fetch()` 网络请求失败?的详细内容。更多信息请关注PHP中文网其他相关文章!