我尝试使用以下代码段
在反应原生中使用fetch apifetch(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)
答案 0 :(得分:-2)
我不确定,但我想你需要获取polyfill:
npm install whatwg-fetch --save
和
import 'whatwg-fetch'
如果您想了解更多信息,请访问https://github.com/github/fetch