2

我正在尝试将本机反应用于一个简单的应用程序。我想从页面下载一个 json 数组并将其显示为列表视图。我正在做这个

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)
  });
},

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

4

1 回答 1

5

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

于 2015-06-20T15:57:34.770 回答