我想为基本的angular2管道添加一些额外的功能。
即。在货币管道上完成了一些额外的格式化。为此,我想在自定义管道的组件代码中使用现有管道。
有什么办法可以做到吗?
@Pipe({name: 'formatCurrency'})
export class FormatCurrency implements PipeTransform {
transform(value:number, args:string[]) : any {
var formatted = value/100;
//I would like to use the basic currecy pipe here.
///100 | currency:'EUR':true:'.2'
return 'Do some extra things here ' + formatted;
}
}
答案 0 :(得分:17)
你可以扩展CurrencyPipe
,如下所示:
export class FormatCurrency extends CurrencyPipe implements PipeTransform {
transform(value: any, args: any[]): string {
let formatedByCurrencyPipe = super.transform(value, args);
let formatedByMe;
// do your thing...
return formatedByMe;
}
}
如果你看一下source,这与角管的工作方式类似......
(由问题作者添加)
不要忘记导入CurrencyPipe类
import {CurrencyPipe} from 'angular2/common';
答案 1 :(得分:11)
或者,您可以注入CurrencyPipe:
bootstrap(AppComponent, [CurrencyPipe]);
管:
@Pipe({
name: 'mypipe'
})
export class MyPipe {
constructor(private cp: CurrencyPipe) {
}
transform(value: any, args: any[]) {
return this.cp.transform(value, args);
}
}
答案 2 :(得分:0)
您可以在自定义管道中使用Angular管道。
首先,必须在管道文件中导入所需的管道,例如。
import { SlicePipe } from '@angular/common';
然后在自定义管道中使用它:
transform(list: any, end: number, active: boolean = true): any {
return active ? new SlicePipe().transform(list, 0, end) : list;
}
在A6上测试。