以编程方式使用CurrencyPipe

时间:2017-02-16 19:28:38

标签: angular pipe

import { Pipe, PipeTransform  } from '@angular/core';
import { DecimalPipe, PercentPipe, CurrencyPipe } from '@angular/common';

class myClass{
   formattedData( value:string){
      let  moneyPipe = new CurrencyPipe();
      moneyPipe.transform( value, 'USD', true );
   }
}

我收到错误#34;提供的参数与呼叫目标的任何签名都不匹配"对于new CurrencyPipe();

有没有办法以编程方式应用内置管道?上面的代码有什么问题?

感谢。

0 个答案:

没有答案