我正在使用ng-select自定义服务器端搜索来根据用户类型加载数据。目前,它仅在实际按下关键字时才有效。我想在每次打开下拉菜单时触发 http 请求,即使搜索词为空
组件.html
<ng-select [items]="filterValues$ | async"
[typeahead]="filterValuesInput$"
[multiple]="true"
(open)="getFilterValues(pref.id)"
[loading]="filterValuesLoading"
bindLabel="name"
[(ngModel)]="filter_values">
</ng-select>
组件.ts
getFilterValues(filterId) {
this.filterValues$ = concat(
of([]), // default items
this.filterValuesInput$.pipe(
distinctUntilChanged(),
tap(() => this.filterValuesLoading = true),
switchMap(term => this.service.getFilterValues(filterName, '' + term).pipe(
map(res => res.filter_values),
catchError(() => of([])), // empty list on error
tap(() => this.filterValuesLoading = false)
))
)
);
}
我试图了解 switchMap() 如何仅在输入输入值后触发请求。每次调用 getFilterValues 方法时,如何让它触发服务的方法?