Angular 下拉列表中的服务器端分页和过滤
Server Side pagination and filtering in Angular dropdown
我正在处理一个大型数据集。我必须用数百万条记录填充下拉列表。因此我需要在服务器端进行分页和过滤,类似于数据table。我们在 Angular 8 中使用 PrimeNG。但是,PrimeNG 不提供任何类型的服务器端分页。
如果以 Angular 方式提供解决方案,任何带有服务器端分页的下拉菜单都可以使用。
请推荐。
我根据自己的需求开始搜索。实际上,我们需要在下拉列表中绑定数百万个数据集。基于 Angular 中可用的所有下拉菜单。我like the ng-slelect
most. The ng-slelect
provide infinite scrolling hook which did my work. It's called virtual scroll. My second choice is anything among Angular material and PrimeNG autocomplete. Though these two controls do not provide virtual scrolling. I found this article very useful.
感谢大家的评论和帮助。
我正在处理一个大型数据集。我必须用数百万条记录填充下拉列表。因此我需要在服务器端进行分页和过滤,类似于数据table。我们在 Angular 8 中使用 PrimeNG。但是,PrimeNG 不提供任何类型的服务器端分页。
如果以 Angular 方式提供解决方案,任何带有服务器端分页的下拉菜单都可以使用。
请推荐。
我根据自己的需求开始搜索。实际上,我们需要在下拉列表中绑定数百万个数据集。基于 Angular 中可用的所有下拉菜单。我like the ng-slelect
most. The ng-slelect
provide infinite scrolling hook which did my work. It's called virtual scroll. My second choice is anything among Angular material and PrimeNG autocomplete. Though these two controls do not provide virtual scrolling. I found this article very useful.
感谢大家的评论和帮助。