Fetch api在native native中不起作用

时间:2016-10-16 04:05:40

标签: react-native fetch

我尝试使用以下代码段

在反应原生中使用fetch api
fetch(REQUEST_URL, {
  method: 'POST',
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    name: 'stephen'
  })
}).then((response) => {
    console.log(response);
});

但它提出错误then of undefined。任何形式的帮助将不胜感激。 (我使用本地网址作为REQUEST_URL)

1 个答案:

答案 0 :(得分:-2)

我不确定,但我想你需要获取polyfill:

npm install whatwg-fetch --save

import 'whatwg-fetch'

如果您想了解更多信息,请访问https://github.com/github/fetch