React Native 网络请求失败Android

bhmjp9jg  于 2023-02-09  发布在  React
关注(0)|答案(3)|浏览(290)

在使用React Native编写的天气应用程序时,我在Android上收到了“网络请求失败”的错误,而应用程序在iOS上运行良好。

下面是获取函数-

componentDidMount: function() {
    navigator.geolocation.getCurrentPosition(
    location => {
      // this variable will contain the full url with the new lat and lon
      var formattedURL = REQUEST_URL + "lat=" + location.coords.latitude + "&lon=" + location.coords.longitude+"&APPID=e5335c30e733fc682907a126dab045fa";

      // this will output the final URL to the Xcode output window
      console.log(location.coords.latitude);
      console.log(location.coords.longitude);
      console.log(formattedURL);

      // get the data from the API
      this.fetchData(formattedURL);

      },
    error => {
      console.log(error);
    });
  },

  // fetchdata takes the formattedURL, gets the json data and
  // sets the apps backgroundColor based on the temperature of
  // the location
  fetchData: function(url) {
    fetch(url)
      .then((response) => response.json())
      .then((responseData) => {

        // set the background colour of the app based on temperature
        var bg;
        var temp = parseInt(responseData.main.temp);
        if(temp < 14) {
          bg = BG_COLD;
        } else if(temp >= 14 && temp < 25) {
          bg = BG_WARM;
        } else if(temp >= 25) {
          bg = BG_HOT;
        }

        // update the state with weatherData and a set backgroundColor
        this.setState({
          weatherData: responseData,
          backgroundColor: bg
        });
      })
      .done();
  },

我也提到了其他关于stackoverflow的问题,但它们都是围绕着将localhost更改为您的本地ip地址(如127.0.0.1)。

vqlkdk9b

vqlkdk9b1#

检查您的Android模拟器选项面板毗邻您的模拟器,因为您将有更多选项,然后转到Hive并检查数据状态网络类型。尝试将网络类型更改为**'Full'和数据状态更改为'Home'**。尝试网络类型和数据状态的各种选项,并检查其是否工作...

2hh7jdfx

2hh7jdfx2#

1.在AndroidManifest.xml中添加android:usesCleartextTraffic="true"行。
1.删除所有调试文件夹从您的android文件夹。

w1e3prcc

w1e3prcc3#

发现这个解决方案只是在移动的网络上,它是工作正常时,我们有互联网连接的模拟器。

相关问题