Ant Design of Vue a-select下拉框因为数据量太大造成卡顿的问题

lxf2024-04-06 11:15:36

  解决方案:

  最开始渲染时只渲染总数据前100条数据以保证不卡顿,然后当需要搜索的时候对从后台拿到的数据进行过滤,也只取前100条,然后通过select下拉框popupScroll事件,下拉列表滚动时的回调,每次回调时都添加一部分数据来解决下拉框的卡顿问题。

  Ant Design of Vue a-select下拉框因为数据量太大造成卡顿的问题

  效果图:

  Ant Design of Vue a-select下拉框因为数据量太大造成卡顿的问题

  代码部分:html

  js:

  (1).data中定义变量与数组

  (2).methods: