我正在尝试在angular2中使用搜索功能。
到目前为止,我为此创建了自己的自定义管道,如下所示:
search.pipe.ts
import { Pipe, PipeTransform ,Injectable} from '@angular/core';
@Pipe({
name: 'search',
pure: false
})
@Injectable()
export class SearchPipe implements PipeTransform {
transform(components: any[], args: any): any {
var val = args[0];
if (val !== undefined) {
var lowerEnabled = args.length > 1 ? args[1] : false;
// filter components array, components which match and return true will be kept, false will be filtered out
return components.filter((component) => {
if (lowerEnabled) {
return (component.name.toLowerCase().indexOf(val.toLowerCase()) !== -1);
} else {
return (component.name.indexOf(val) !== -1);
}
});
}
return components;
}
}
并且在执行此操作之后,我尝试在html中应用此管道,如下所示:
*ngFor="let aComponent of selectedLib.componentGroups[groupCounter].components | search:searchComp:true"
它给我以下错误:
TypeError:无法读取未定义的属性“0”
当我没有应用管道时,* ngFor正确打印数组元素但是只要我在html中应用搜索管道就会给我上面的错误。
任何输入?
答案 0 :(得分:0)
RC中的新管道需要多个参数而不是一个数组:
transform(components: any[], searchComponent: any, caseInsensitive: boolean): any {
if (searchComponent !== undefined) {
// filter components array, components which match and return true will be kept, false will be filtered out
return components.filter((component) => {
if (caseInsensitive) {
return (component.name.toLowerCase().indexOf(searchComponent.toLowerCase()) !== -1);
} else {
return (component.name.indexOf(searchComponent) !== -1);
}
});
}
return components;
}