你好,虚拟重复分量也存在于角4中吗?
我需要显示一个下拉菜单与自动完成与许多数据(30k元素)和角质材料垫-自动完成不起作用。
发布于 2018-04-19 05:07:02
找到了一个解决方案
学分:https://github.com/ng-select/ng-select
它是这样使用的
<ng-select [items]="items" [virtualScroll]="true"
bindLabel="Description"bindValue="Id" placeholder="Select city"
[(ngModel)]="text">
</ng-select>
然后将材料主题添加到您的样式中。
@import "~@ng-select/ng-select/themes/material.theme.css";
https://stackoverflow.com/questions/49916680
复制