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

相关文章
相关标签/搜索