我正在做一个自动完成搜索框,我遇到的问题是,当我在输入中写一个词时,服务很好地返回了项目结果列表。如果有匹配的元素,则服务返回,如果没有,则返回空,但问题是我的组件列表没有随服务值更新,我不知道为什么。我在按照一个例子,我的不起作用。我希望有一个人可以帮助我。
这是服务请求。
searchNewsInList2(filterValue:any):Observable<New[]>{
return this.httpClient.get<New[]>(this.basePath)
.pipe(
tap((response:any)=>{
response=response
.filter(news=>news.title.includes(filterValue))
return response;
})
);
}
这是组件中的请求,列表不会随着服务返回数据而更新。
constructor(private notificationService:NotificationsService,private newsService: NewsService, private router: Router,private tost:ToastrService) {
this.notificationRequest=new Notification();
this.newsSelected=new New();
this.newsCntrlToAdd = new FormControl();
}
ngOnInit() {
this.filteredNews=this.newsCntrlToAdd.valueChanges
.pipe(
debounceTime(300),
startWith(''),
switchMap(value =>this.newsService.searchNewsInList2( value))
);
}
displayFn(newFound: New) {
if (newFound) {
return newFound.title;
}
}
这是视图。
<mat-form-field class="example-full-width">
<input matInput placeholder="Specify a news to add"[formControl]="newsCntrlToAdd"
[matAutocomplete]="auto" required minlength="4">
</mat-form-field>
<mat-autocomplete #auto="matAutocomplete" [displayWith]="displayFn">
<mat-option *ngFor="let newFound of (filteredNews | async)" [value]="newFound">
<span>{{ newFound.title }}</span>
<!--small> | ID: {{newFound.id}}</small-->
</mat-option>
</mat-autocomplete>