React Native fetch不是一个函数

时间:2015-06-20 14:09:21

标签: react-native fetch-api

我尝试使用本机响应简单应用。我想从页面下载一个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");

1 个答案:

答案 0 :(得分:5)

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