gpt4 book ai didi

react-native - Fetch api 在 native react 中不起作用

转载 作者:行者123 更新时间:2023-12-04 04:53:06 28 4
gpt4 key购买 nike

我正在尝试使用以下代码片段在 React Native 中使用 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。任何形式的帮助将不胜感激。 (我使用本地 url 作为 REQUEST_URL)

最佳答案

我不确定,但我猜你需要 fetch polyfill:

npm install whatwg-fetch --save

import 'whatwg-fetch'

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

关于react-native - Fetch api 在 native react 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40066712/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com