我的页面由 *ngFor 指令创建的几个ng-select(自定义服务器端搜索)下拉列表组成,可以从每个下拉列表中选择多个项目。
我还想包含虚拟滚动功能,但我不知道如何发出另一个服务器请求并更新filterValues$
值以包含新数据。
组件.html
<ng-select [items]="filterValues$[filter.name] | async"
[typeahead]="filterValuesInput$[filter.name]"
[virtualScroll]="true"
[multiple]="true"
[closeOnSelect]="false"
[loading]="filterValuesLoading[filter.name]"
[(ngModel)]="filter.filter_values"
(scrollToEnd)="onScrollToEnd(filter.name)"
(open)="onFilterOpen(filter.name)"
typeToSearchText="No values found"
bindLabel="name">
</ng-select>
组件.ts
onScrollToEnd(filterName) {
this.fetchMore(filterName);
}
fetchMore(filterName) {
this.filterValues$[filterName] = combineLatest(this.getFilterValues(filterName, this.afterKey), of(this.existingValues))
.pipe(
map(combined => {
return combined[1].concat(combined[0])
})
);
}
getFilterValues(filterName, after) {
return this.filterValuesInput$[filterName].pipe(
tap(() => this.filterValuesLoading[filterName] = true),
startWith(''),
distinctUntilChanged(),
switchMap(term => this.search.getFilterValues(filterName, '' + term, '' + after).pipe(
tap(res => {
this.afterKey = res.after_key;
this.filterValuesLoading[filterName] = false;
this.existingValues = this.existingValues.concat(res.filter_values);
this.totalFilterValues = res.total_hits;
//this.bufferLength += this.initialValues.length;
}),
map(res => res.filter_values),
catchError(() => of([])) // empty list on error
))
)
}
任何帮助,将不胜感激!
使用更新的代码进行编辑:我设法实现了虚拟滚动功能,但是每当我进入下拉列表的底部时,它都会触发该fetchMore()
方法并重置this.filterValues$[filterName]
值,从而将下拉列表从底部移动到顶部。我怎样才能防止这种情况?