array.filter不是react组件中的函数

时间:2017-05-31 17:59:46

标签: javascript reactjs webpack create-react-app

我正在使用 create-react-app 作为我的应用的起点。我想在构造函数中使用默认的JavaScript功能,如 array.map array.filter 等。但是,只要我运行以下代码,就会抛出错误。

this.state.onlineUsers.filter(function (ele) {
    return ele.id==4;
});

初始状态是

this.state = {
      onlineUsers: []
    };

这是错误

enter image description here

0 个答案:

没有答案