反应从API网络请求失败错误获取本机expo数据

时间:2020-04-26 18:36:34

标签: api react-native react-native-android expo react-native-navigation

我当前正在尝试运行此代码

        fetch('http://112.134.77.211:8080/users/toFrontend?email=baby@gmail.com')
          .then((response) => response.json())
          .then((json) => {
            this.setState({ data: json.movies });
          })
          .catch((error) => console.error(error))
          .finally(() => {
            this.setState({ isLoading: false });
          });
      } 

每当我运行代码时,后端就在Spring Boot上本地运行,并且数据库在Google Cloud上运行

0 个答案:

没有答案