ReactJS toLowerCase 不是一个函数



我通过将文本转换为小写并将其索引与 -1 进行比较,以便对 ReactJS 中的特定字段具有一些价值,但我在 JavaScript 控制台中收到此错误:

未捕获的类型错误:props.filterText.toLowerCase 不是一个函数

var props = this.props;
var rows = this.props.episodes
    .filter(function(episode){
        return episode.title.toLowerCase().indexOf(props.filterText.toLowerCase()) > -1;
    })
    .map(function(episode){
       return <EpisodeRow key={episode.title} episode={episode}/>
    });

看起来克里斯的评论是正确的答案:

如果 title 是字符串,请在 toLowerCase() 之前使用 toString():

return episode.title.toString().toLowerCase().indexOf(props.filterText.toString().toLowerCase()) > -1;
我想

我发现问题:)

props.filterText 是未定义的。=> 在放入 props 之前,必须在状态中声明 filterText:"

我认为亚当从评论中的回答实际上是正确的,结果解决了我的问题:

.filter(function(episode){
    if(episode.title) {
        return episode.title.toLowerCase().indexOf(props.filterText.toLowerCase()) > -1;
    } else {
        return '';
    }
})

相关内容

  • 没有找到相关文章

最新更新