angular2/ionic2 實現搜索結果中的搜索關鍵字高亮

添加一個pipe:

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

html中使用方法:

<ion-label [innerHTML]="item.name | keyword:searchText"></ion-label>

注: 在<ion-item>標籤裏面用新的標籤包起來,否則會有樣式問題; 要用innerHTML來綁定數據。vue

演示效果

ionic3-awesome-v1.1.gif

開源項目地址: https://github.com/alex-0407/...node


更多angular1/2/4/五、ionic1/2/3/四、react、vue、微信小程序、nodejs等技術文章、視頻教程和開源項目,請掃一掃下面的二維碼關注微信公衆號——全棧弄潮兒react

微信公衆號.png


福利專區:掃碼關注,免費領取淘寶天貓內部優惠券git

淘寶天貓內部優惠券.png

相關文章
相關標籤/搜索