从真实设备调用本地api失败(react-native-android)

时间:2019-01-30 07:43:47

标签: react-native react-native-android

signinFetch('http://192.xxx.x.x:8000/api/branch-api/login', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    grant_type: 'password',
    client_id: OAUTH_CLIENT_ID,
    client_secret: OAUTH_CLIENT_SECRECT,
    email: this.props.email,
    password: this.props.password,
    scope: ''
  })
})
.then((response) => {
  console.log(response);
})
.catch((error) => {
   console.log(error);
});

无法从物理设备本地主机调用Login api。但是我可以调试本地主机上的应用程序,那为什么我没有得到本地api的响应

我尝试过

1 个答案:

答案 0 :(得分:0)

有一个Google文档,用于将localhost连接到物理设备here。引用这个 简单而简单