gpt4 book ai didi

当(打开)事件被触发时,Angular ng-select 加载异步数据

转载 作者:行者123 更新时间:2023-12-04 14:14:46 24 4
gpt4 key购买 nike

我正在使用 ng-select自定义服务器端搜索以根据用户键入的内容加载数据。目前它仅在实际按下关键字时才有效。

<ng-select [items]="filterValues$ | async"
[typeahead]="filterValuesInput$"
[multiple]="true"
(open)="getFilterValues(pref.id)"
[loading]="filterValuesLoading"
bindLabel="name"
[(ngModel)]="filter_values">
</ng-select>

我想在选择下拉菜单打开时触发 API 请求, 如果没有提供搜索词。

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)
))
)
);
}

有什么建议?

最佳答案

发生这种情况是因为 concat 没有发出第二个 observable 的任何值原因。您可以尝试使用 startWith 运算符进行初始加载

getFilterValues(filterId) {
this.filterValues$ = concat(
of([]), // default items
this.filterValuesInput$.pipe(
startWith(''),
debounce(300),
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)
))
)
);
}

希望这可以帮助

关于当(打开)事件被触发时,Angular ng-select 加载异步数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61519554/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com