Angular component 組件內使用原生pipe

Angular內置的pipe通常用在template中,好比下面的CurrencyPipe用來格式化貨幣 <p>A: {{a | currency:'USD':true:'1.0-0'}}</p> 若是變量a的值是2345。格式化後會顯示成$2,345。很是方便。typescript

若是須要在component內使用原生pipe,能夠用下面的方法:bash

  1. 打開component所屬的module文件,添加提供器,供依賴注入
import {CurrencyPipe} from '@angular/common'
.....
providers: [CurrencyPipe]
複製代碼
  1. 打開要使用的component文件,往構造函數中注入剛纔定義的提供器
import {CurrencyPipe} from '@angular/common'
....
constructor(private currencyPipe: CurrencyPipe) { ... }
複製代碼
  1. 在component也就是ts中,就能夠直接使用了 this.value = this.cp.transform(this.value, 'USD': true: '1.0-0'); // $12,345

參考:

ngninja.com/posts/angul…angular2

相關文章
相關標籤/搜索