Android设备react-native fetch网络请求失败

时间:2018-04-26 14:18:36

标签: react-native fetch

以下代码行适用于iPhone(设备不是模拟器)但不适用于Android设备。

try {
  const response = yield fetch("https://myapi.coolapp.com/v1/tokens/", {
      method: 'POST',
      headers: {
        Accept: 'application/json',
        'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    email: action.email,
    password: action.password,
    tokenDuration: 100000000,
    app: true,
  }),
});

在stackoverflow上阅读大多数类似的问题,但无济于事。有什么提示吗?

0 个答案:

没有答案