import { Pipe, Injectable, PipeTransform } from '@angular/core'; import { DomSanitizer } from '@angular/platform-browser'; @Pipe({ name: 'keyword' }) @Injectable() export class KeywordPipe implements PipeTransform { constructor(private sanitizer: DomSanitizer) { } transform(val: string, keyword: string): any { const Reg = new RegExp(keyword, 'i'); if (val) { const res = val.replace(Reg, `<span style="color: #81E1B7;">${keyword}</span>`); console.log(res); return this.sanitizer.bypassSecurityTrustHtml(res); } } }
注: DomSanitizer,這個的目的是是數據在頁面上的綁定可以safe的解析html
<ion-label [innerHTML]="item.name | keyword:searchText"></ion-label>
注: 在<ion-item>標籤裏面用新的標籤包起來,否則會有樣式問題; 要用innerHTML來綁定數據。vue
開源項目地址: https://github.com/alex-0407/...node
更多angular1/2/4/五、ionic1/2/3/四、react、vue、微信小程序、nodejs等技術文章、視頻教程和開源項目,請掃一掃下面的二維碼關注微信公衆號——全棧弄潮兒。react
福利專區:掃碼關注,免費領取淘寶天貓內部優惠券git