React Native 无法过滤道具



我目前正在 react native 和 redux 中构建一个搜索栏,但无法以可以通过文本输入过滤的格式传递我的 props。

onInput(text) {
    this.setState({
      text,
    }); 
    /* Search after user stop typing */
    clearTimeout(this.inputDelay);
    this.inputDelay = setTimeout(() => {
      this.getResult(text);
    }, 1000);
  }
  getResult(text) {
    if (text.length > 0) {
      const { entitiesList } = this.props;
      const { dataSource } = this.state;
      console.log(this.props.entitiesList); // returns object containing an array
      const reg = new RegExp(text, 'i');
      const entities = entitiesList.filter((entity) => {
        return reg.test(entity.fullName);
      });
      this.setState({
        dataSource: dataSource.cloneWithRows(entities),
      });
    }

Unhandled JS Exception: _this3.props.entitiesList.filter is not a function被抛出。this.props.entitiesList 确实返回了一个对象,所以我不确定我哪里出错了。

{ performances: 
   [ { _id: '5893b419d2b38b7122dc24f6',
       fullName: 'Brett Monroe',
       Z3_performance_Id: '696395',
       A_relationship_Place: '1.',
       N_event_Division: 'Varsity',
       F_performance_Mark: '19.05',
       C_athlete_Id: '273452',
     },
     {...},
     {...}
   ]
}

任何提示/指示表示赞赏!

原因是entitiesList是一个object,你不能直接在object上使用filter或任何其他迭代器,如map, forEach等。 entitiesList包含一个键performances,即array,所以你需要像这样使用它:

  const entities = entitiesList.performances.filter((entity) => {
    return reg.test(entity.fullName);
  });

相关内容

  • 没有找到相关文章

最新更新