name
属性的管道元数据。 此值将用于在模板表达式中调用此管道。 它必须是有效的JavaScript标识符。PipeTransform
接口的transform
方法。 此方法接受管道的值和任何类型的可变数量的参数,并返回一个变换的(“管道”)值。
import { Component } from '@angular/core';
selector: 'app-root',
template: `
<div>
<p *ngFor="let f of fileSizes">{{ f | formatFileSize }}</p>
})
export class AppComponent {
fileSizes = [10, 100, 1000, 10000, 100000, 10000000, 10000000000];
}