网上看到很多js实现的关键词高亮显示,方法都是一个道理,先获取要替换的文字区域,然后在用正则匹配到关键词,并进行替换。
react中实现起来似乎更简单一些。
我这里的需求是通过搜索框搜索出新闻列表,在已经获取到新闻列表数据中使用filter函数,获取到每一个新闻的title,并定义关键词正则,返回替换后的样式,react不能直接解析带html标签的字符串,方法如下:
render() { const newsList=this.state.newsList; if(this.props.type==='tag'||this.props.type==='search'){ let keyword=this.props.id; //这里是父组件传过来的关键词 newsList.filter((value,index) => { //使用filter函数过滤新闻列表数据 var re =new RegExp(keyword,"g"); //定义正则 value.title=value.title.replace(re, `${keyword}`); //进行替换,并定义高亮的样式 }) } return ({newsList.map((value,index) => { return (); }) //把新闻传递给新闻列表的单个新闻组件 }) } {this.state.loadingText}
NewsListItem组件渲染title: