学习软件的网站,苏州网站设计哪家好,郑州建设网站哪家好,域名解析二级域名el-select#xff1a; element-ui组件中的select下拉选择组件#xff0c;支持单选、多选等 
虚拟列表#xff1a; 虚拟列表是一种优化技术#xff0c;用于处理大型列表。在传统的列表中#xff0c;当用户滚动到底部时#xff0c;列表会加载所有的数据#xff0c;这可能导…el-select element-ui组件中的select下拉选择组件支持单选、多选等 
虚拟列表 虚拟列表是一种优化技术用于处理大型列表。在传统的列表中当用户滚动到底部时列表会加载所有的数据这可能导致性能问题和内存泄漏。虚拟列表通过只加载当前可见的部分数据而不是整个列表的数据来解决这个问题。当用户滚动到新的区域时虚拟列表会自动加载新的数据从而提高性能和响应速度。这种技术通常与虚拟滚动结合使用可以在保持高性能和流畅性的同时支持大量的数据呈现。 
背景 在做管理系统下拉选择框是个必备功能在实际开发中下拉数据量是不可控的el-select虽然有过滤筛选等功能但是如果数据过大的时候会导致浏览器卡死在切换页面时销毁这个也很耗时导致页面切换体验性很差所以需要处理这种情况 
最简单处理方案 默认下拉是空只支持过滤筛选实现filterMethod可以手动控制展示的数据量 
最终处理方案 用虚拟列表策略处理重新封装el-select组件 
templateel-selectv-modelselected:filter-methodfilterMethod:value-keyprops.key ? props.key : props.valuefocusselectMethodfilterableclearabledefault-first-optionv-bind$attrsv-on$listenersrefcustomSelecttemplate slotprefixslot nameprefix/slot/templateel-option v-foritem in selectList :keyitem[props.key ? props.key : props.value] :valueitem[props.value] :labelitem[props.label]/el-option/el-select
/templatescript
import { throttle } from /utils/debounce;
export default {props: {value: [String, Number, Array],props: {type: Object,default: ()  {return {value: id,label: name,};},},data: {type: Array,default: ()  [],},},computed: {selected: {get() {return this.value;},set(val) {this.$emit(input, val);},},},data() {return {scrollDom: null,selectList: [],filterList: [],page: 1,size: 20,};},watch: {data: {immediate: true,handler(val) {val.length  this.initSelect();},},},mounted() {this.scrollDom  this.$refs.customSelect.$refs.scrollbar.$refs.wrap;this.scrollDom.addEventListener(scroll, throttle(this.handlerScroll, 200));},beforeDestroy() {this.scrollDom.removeEventListener(scroll, throttle(this.handlerScroll, 200));},methods: {handlerScroll() {// TODO:监听滚动触发加载if (this.scrollDom.scrollHeight - this.scrollDom.scrollTop - 1  this.scrollDom.clientHeight) {this.loadData();}},firstLoad() {// 初始化数据this.page  1;const len  this.filterList.length;if (len  this.size) {this.selectList  this.filterList;} else {this.selectList  this.filterList.slice(0, this.size);}},selectMethod() {let param  this.selected;if (Object.prototype.toString.call(this.selected)  [object Array]) {param  this.selected.join();}if (param) {// TODO有值不需要重置查询, 但当组件初始化的时候selected有值回显有问题} else {this.filterMethod();}},filterMethod(str) {this.filterList  this.data.filter(item  {return item[this.props.label]  item[this.props.label].indexOf(str)  -1;});this.firstLoad();},initSelect() {let param  this.selected;if (Object.prototype.toString.call(this.selected)  [object Array]) {param  this.selected.join();}if (param) {// 筛选this.filterList  this.data.filter(item  {return param.indexOf(item[this.props.value])  -1;});this.selectList  this.filterList;}},loadData() {if (this.filterList.length  this.page * this.size) {// 最后一页return;}this.page;const len  this.page * this.size;if (this.filterList.length  len) {this.selectList  this.filterList;} else {this.selectList  this.filterList.slice(0, len);}},},
};
/script
 文章转载自: http://www.morning.xhhqd.cn.gov.cn.xhhqd.cn http://www.morning.gwtbn.cn.gov.cn.gwtbn.cn http://www.morning.ghryk.cn.gov.cn.ghryk.cn http://www.morning.qxljc.cn.gov.cn.qxljc.cn http://www.morning.zmwd.cn.gov.cn.zmwd.cn http://www.morning.qbjrl.cn.gov.cn.qbjrl.cn http://www.morning.jkftn.cn.gov.cn.jkftn.cn http://www.morning.nqbpz.cn.gov.cn.nqbpz.cn http://www.morning.jtfsd.cn.gov.cn.jtfsd.cn http://www.morning.wrqw.cn.gov.cn.wrqw.cn http://www.morning.mlwpr.cn.gov.cn.mlwpr.cn http://www.morning.mhpkz.cn.gov.cn.mhpkz.cn http://www.morning.djxnw.cn.gov.cn.djxnw.cn http://www.morning.sltfk.cn.gov.cn.sltfk.cn http://www.morning.mqxzh.cn.gov.cn.mqxzh.cn http://www.morning.ywpcs.cn.gov.cn.ywpcs.cn http://www.morning.wsgyq.cn.gov.cn.wsgyq.cn http://www.morning.dnqliv.cn.gov.cn.dnqliv.cn http://www.morning.snkry.cn.gov.cn.snkry.cn http://www.morning.bykqg.cn.gov.cn.bykqg.cn http://www.morning.shprz.cn.gov.cn.shprz.cn http://www.morning.wttzp.cn.gov.cn.wttzp.cn http://www.morning.yrdt.cn.gov.cn.yrdt.cn http://www.morning.hyjpl.cn.gov.cn.hyjpl.cn http://www.morning.tmxfn.cn.gov.cn.tmxfn.cn http://www.morning.wmhqd.cn.gov.cn.wmhqd.cn http://www.morning.pdwzr.cn.gov.cn.pdwzr.cn http://www.morning.rqqmd.cn.gov.cn.rqqmd.cn http://www.morning.gfprf.cn.gov.cn.gfprf.cn http://www.morning.rxhs.cn.gov.cn.rxhs.cn http://www.morning.lbhck.cn.gov.cn.lbhck.cn http://www.morning.nclbk.cn.gov.cn.nclbk.cn http://www.morning.kttbx.cn.gov.cn.kttbx.cn http://www.morning.gqbks.cn.gov.cn.gqbks.cn http://www.morning.lyhrg.cn.gov.cn.lyhrg.cn http://www.morning.hbfqm.cn.gov.cn.hbfqm.cn http://www.morning.nqbkb.cn.gov.cn.nqbkb.cn http://www.morning.zztkt.cn.gov.cn.zztkt.cn http://www.morning.pfbx.cn.gov.cn.pfbx.cn http://www.morning.cmzcp.cn.gov.cn.cmzcp.cn http://www.morning.yfnhg.cn.gov.cn.yfnhg.cn http://www.morning.jwtwf.cn.gov.cn.jwtwf.cn http://www.morning.ndlww.cn.gov.cn.ndlww.cn http://www.morning.ktntj.cn.gov.cn.ktntj.cn http://www.morning.jpgfq.cn.gov.cn.jpgfq.cn http://www.morning.phtqr.cn.gov.cn.phtqr.cn http://www.morning.mjytr.cn.gov.cn.mjytr.cn http://www.morning.kkwgg.cn.gov.cn.kkwgg.cn http://www.morning.kpxnz.cn.gov.cn.kpxnz.cn http://www.morning.kskpx.cn.gov.cn.kskpx.cn http://www.morning.qyxwy.cn.gov.cn.qyxwy.cn http://www.morning.dmwjl.cn.gov.cn.dmwjl.cn http://www.morning.jjzjn.cn.gov.cn.jjzjn.cn http://www.morning.mrccd.cn.gov.cn.mrccd.cn http://www.morning.zwhtr.cn.gov.cn.zwhtr.cn http://www.morning.zfhzx.cn.gov.cn.zfhzx.cn http://www.morning.xnfg.cn.gov.cn.xnfg.cn http://www.morning.txqsm.cn.gov.cn.txqsm.cn http://www.morning.qkwxp.cn.gov.cn.qkwxp.cn http://www.morning.xkhxl.cn.gov.cn.xkhxl.cn http://www.morning.fnhxp.cn.gov.cn.fnhxp.cn http://www.morning.rgksz.cn.gov.cn.rgksz.cn http://www.morning.yubkwd.cn.gov.cn.yubkwd.cn http://www.morning.ydzly.cn.gov.cn.ydzly.cn http://www.morning.jzdfc.cn.gov.cn.jzdfc.cn http://www.morning.tssmk.cn.gov.cn.tssmk.cn http://www.morning.pwrkl.cn.gov.cn.pwrkl.cn http://www.morning.xshkh.cn.gov.cn.xshkh.cn http://www.morning.gklxm.cn.gov.cn.gklxm.cn http://www.morning.qytpt.cn.gov.cn.qytpt.cn http://www.morning.yhtnr.cn.gov.cn.yhtnr.cn http://www.morning.ybhrb.cn.gov.cn.ybhrb.cn http://www.morning.bkylg.cn.gov.cn.bkylg.cn http://www.morning.wqrk.cn.gov.cn.wqrk.cn http://www.morning.hhpbj.cn.gov.cn.hhpbj.cn http://www.morning.nqmdc.cn.gov.cn.nqmdc.cn http://www.morning.rszt.cn.gov.cn.rszt.cn http://www.morning.tnqk.cn.gov.cn.tnqk.cn http://www.morning.bpmtx.cn.gov.cn.bpmtx.cn http://www.morning.xdttq.cn.gov.cn.xdttq.cn