我使用 Angular 6,我想过滤异步管道的结果,然后在 UI 中呈现它们。
这是我现在的代码
this.results = this.form.get('name').valueChanges.pipe(
filter(formdata => formdata.name.length > 0),
switchMap( formdata => this.service.getNames(formdata.name))
);
和模板
<div *ngIf='results | async ; let items'>
<div *ngFor='let item of items'>{{item.id}} {{item.name}} </div>
</div>
从管道中,我得到了一些 ID 和名称。我已经有一个 id 数组。我想过滤管道的 id,而不是渲染已经在数组中的那些。
所以,这就是我尝试做的。
array = [{id:1,name:'one'},{id:2,name:'two'}];//I already have this
新版本的管道过滤器
this.results = this.form.get('name').valueChanges.pipe(
filter(formdata => formdata.name.length > 0),
switchMap( formdata => this.service.getNames(formdata.name)) ,
filter(checkIfResultIdInArray())//pseudocode
);
假设那checkIfResultIdInArray
是我创建的函数。过滤并返回所有不在array
. 所以最终出现在模板中的 ids/names 不是{id:1,name:'one'},{id:2,name:'two'}
.
或者也许我可以以某种方式过滤模板?