gpt4 book ai didi

react-native - React Native fetch 不是函数

转载 作者:行者123 更新时间:2023-12-02 09:32:47 25 4
gpt4 key购买 nike

我正在尝试将 React Native 用于一个简单的应用程序。我想从页面下载一个 json 数组并将其显示为 ListView 。我在做这个

var listApp = React.createClass({

fetchData : function() {
fetch(requestURL)
.then((response) => response.json())
.then((responseData) => {
console.log(responseData);
})
.done();
},
componentDidMount: function() {
this.fetchData();
this.setState({
dataSource: this.state.dataSource.cloneWithRows(elements)
});
},

但是这样做我从 Chrome 调试器中得到错误 fetch is not a function。我以这种方式获取 var fetch = require("fetch");

最佳答案

您不需要要求它。它是浏览器版本的 polyfill,并且与浏览器版本一样,它始终可用于全局范围。

关于react-native - React Native fetch 不是函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30954899/

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