美文网首页
Angular component 组件内使用原生pipe

Angular component 组件内使用原生pipe

作者: 飞凡的陀螺 | 来源:发表于2019-02-18 16:00 被阅读0次

    Angular内置的pipe一般用在template中,比如下面的CurrencyPipe用来格式化货币
    <p>A: {{a | currency:'USD':true:'1.0-0'}}</p>
    如果变量a的值是2345。格式化后会显示成$2,345。非常方便。

    如果需要在component内使用原生pipe,可以用下面的方法:

    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

    参考:

    http://ngninja.com/posts/angular2-builtin-pipes-in-typescript

    相关文章

      网友评论

          本文标题:Angular component 组件内使用原生pipe

          本文链接:https://www.haomeiwen.com/subject/unnaeqtx.html