uni-app 微信小程序 搜索替换关键字且高亮显示
<u-parse :content="highlightedContent(item.content)"></u-parse>
highlightedContent(content) { let str = '' if (!this.keyword) { str = content return str } const regExp = new RegExp(this.keyword, "gi"); str = content.replace(regExp, (match) => { return `<text class="highlight">${match}</text>`; }); return `<view class="md-flex">${str}</view>` },

浙公网安备 33010602011771号