首页  >  文章  >  web前端  >  为什么我的 React Native `fetch()` 网络请求失败?

为什么我的 React Native `fetch()` 网络请求失败?

Patricia Arquette
Patricia Arquette原创
2024-11-02 21:49:02653浏览

Why Does My React Native `fetch()` Network Request Fail?

“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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn