你能否告诉我如何使用angular 2
中的管道过滤列表https://stackblitz.com/edit/angular-qvtqeu?file=src%2Fapp%2Fapp.component.html
我试过这个
<ul class="user-list | filterlist:userenter">
<li *ngFor="let user of users" class="user-list__item">
过滤
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'filterlist'
})
export class FilterlistPipe implements PipeTransform {
transform(value: any, args?: any): any {
return value.filter(
item => item.first_name.toLowerCase().indexOf(args.toLowerCase()) > -1
);
}
}
但是当我输入输入字段时,过滤功能无效?
答案 0 :(得分:2)
你应该这样做
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'filterlist'
})
export class FilterlistPipe implements PipeTransform {
transform(value: any, args?: any): any {
if(!args)
return value;
return value.filter(
item => item.first_name.toLowerCase().indexOf(args.toLowerCase()) > -1
);
}
}
检查args
是否有价值,并且您第一次没有args
的价值..这是其无效的原因
答案 1 :(得分:1)
Angular没有附带管道的原因是因为它会有糟糕的性能。
对于数组中的每一行,您将迭代整个数组。可能每秒重复几次。这不是你想要的。
相反,请按照以下方式声明您的列表:
allUsers: [];
filteredUsers: [];
按照您目前的allUsers
填充users
。然后,在过滤器更改的每个位置,您将filteredUsers
替换为allUsers
的过滤版本。
你的循环变为:
<ul class="user-list">
<li *ngFor="let user of filteredUsers" class="user-list__item">
等等。
答案 2 :(得分:0)
您已将过滤器应用于class
属性..
应该在*ngFor
:
*ngFor="let user of users | filterlist:userenter"
在你的管道代码(filterlist.pipe.ts)中,当没有设置过滤器时返回整个数组:
if(args === undefined){
return value;
}
答案 3 :(得分:0)
您可以使用ng2-search-filter npm 有关更多详细信息,您可以通过此演示: Demo Link
<强> app.module.ts 强>
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
// search module
import { Ng2SearchPipeModule } from 'ng2-search-filter';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, FormsModule, Ng2SearchPipeModule ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
<强> app.component.ts 强>
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
title = 'Angular Search Using ng2-search-filter';
searchText;
heroes = [
{ id: 11, name: 'Mr. Nice', country: 'India' },
{ id: 12, name: 'Narco' , country: 'USA'},
{ id: 13, name: 'Bombasto' , country: 'UK'},
{ id: 14, name: 'Celeritas' , country: 'Canada'},
{ id: 15, name: 'Magneta' , country: 'Russia'},
{ id: 16, name: 'RubberMan' , country: 'China'},
{ id: 17, name: 'Dynama' , country: 'Germany'},
{ id: 18, name: 'Dr IQ' , country: 'Hong Kong'},
{ id: 19, name: 'Magma' , country: 'South Africa'},
{ id: 20, name: 'Tornado' , country: 'Sri Lanka'}
];
}
<强> app.component.html 强>
<div class="container text-center">
<h1>{{title}}</h1>
</div>
<div class="container">
<div class="row">
<div class="search-hero">
<input class="form-control" type="text" name="search" [(ngModel)]="searchText" autocomplete="off" placeholder=" Start searching for a hero by id or name or country">
</div>
<table class="table table-striped">
<thead>
<tr>
<th>Id</th>
<th>Hero Name</th>
<th>Country</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let hero of heroes | filter:searchText">
<td>{{hero.id}}</td>
<td>{{hero.name}}</td>
<td>{{hero.country}}</td>
</tr>
</tbody>
</table>
</div>
</div>
这将负责过滤结果列表中的数据。 希望这会对你有所帮助。
答案 4 :(得分:0)
如果args为null,则返回所有项目。
import { Pipe, PipeTransform } from '@angular/core';
@Pipe({
name: 'filterlist'
})
export class FilterlistPipe implements PipeTransform {
transform(value: any, args?: any): any {
// added code
if(args == null){
return value;
}
// added code
return value.filter(
item => item.first_name.toLowerCase().indexOf(args.toLowerCase()) > -1
);
}
}