我想在 Angular 4.x 中创建一个自定义管道,该管道将谓词函数作为参数,以便从数组中过滤值。
这是我的管道代码:[Snippet #1:mypipe.ts]
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'filter'
})
export class FilterPipe implements PipeTransform {
transform(values: any[], predicate: (any) => boolean): any {
return values.filter(predicate);
}
}
以下是我在模板中使用它的方式:[Snippet #2:mycomponent.html]
<div *ngFor="let item of (items | filter:(x=>x.isValid))">
但在运行时,我收到此错误:[Snippet #3]
Error: Uncaught (in promise): Error: Template parse errors:
Parser Error: Bindings cannot contain assignments at column 44 in [let item of (items | filter:(x=>x.isValid))]
我通过isValid()
在我的组件中创建一个函数并将这个函数用作我的过滤器的参数来解决这个问题:
[片段#4:mycomponent.ts]
isItemValid(item): boolean {
return item.isValid;
}
[片段#5:mycomponent.html]
<div *ngFor="let item of (items | filter:isItemValid)">
但我不太喜欢这个选项,因为我认为它的可读性不如箭头函数(您必须切换到 component.ts 文件才能了解将在 component.html 中过滤的内容)。
有没有更好的解决方案,看起来像代码片段 #2 ?