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();
行
有没有办法以编程方式应用内置管道?上面的代码有什么问题?
感谢。