我正在通过将我的文本转换为小写并将其索引与 -1 进行比较来进行比较,以便对 中的特定字段具有一些价值ReactJS
,但我在 JavaScript 控制台中收到此错误:
未捕获的 TypeError: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}/>
});