Scenario I have recently started to develop a background management system based on ElementUI, and accidentally discovered a problem with the "el-select" drop-down selection. When the amount of data in the "options" that render the drop-down options is too large (the number of data entries in this project has exceeded 10,000), the drop-down selector will become stuck, especially in the case of fuzzy matching filtering, it will be very stuck. When initializing the selector, there will be no response when clicking, and sometimes you need to click multiple times before the "dialog" pop-up window appears (this drop-down filter is implemented in the pop-up window). After reading many blog notes, I finally found a solution to the problem. I will now record this optimization plan as a note so that it will be easy to refer to when I encounter similar problems in the future. Note: Based on the select drop-down filter, fuzzy search matching is achieved through custom events. There are two options:
Code ImplementationVue component example <template> <div class="app"> <el-dialog title="Title" :visible.sync="relatedOpen" :append-to-body="true" width="500px"> <el-row :gutter="16"> <el-col :span="20"> <el-select v-model="value" filterable clearable style="width:100%" placeholder="Please select" :loading="searchLoad" :filter-method="filterMethod" v-el-select-loadmore="loadMore(rangeNumber)" @visible-change="visibleChange" > <el-option v-for="item in options.slice(0, rangeNumber)" :key="item.key" :label="item.value" :value="item.key"></el-option> </el-select> </el-col> <el-col :span="4"> <el-button type="primary" @click="submit">OK</el-button> </el-col> </el-row> </el-dialog> </div> </template>
// Custom directives: { "el-select-loadmore": (el, binding) => { // Get the scroll element defined by element UI const SELECTWRAP_ROM = el.querySelector(".el-select-dropdown .el-select-dropdown__wrap"); if (SELECTWRAP_ROM) { // Add scroll event SELECTWRAP_ROM.addEventListener("scroll", function() { // Determine scrolling const condition = this.scrollHeight - this.scrollTop <= this.clientHeight; condition && binding.value(); }); } } } The corresponding data function export default { data() { return { relatedOpen: false, options: [] /* Select the value of the drop-down box */, courseList: [], rangeNumber: 10, searchLoad: false /* Loading state of the drop-down box*/, value: "", timer: null }; }, created() { this.getOptions(); }, methods: { // Load on demand loadMore(n) { return () => (this.rangeNumber += 5); }, // Filter courseware filterMethod(query) { if (this.timer != null) clearTimeout(this.timer); !this.searchLoad && (this.searchLoad = true); this.timer = setTimeout(() => { this.options = !!query ? this.courseList.filter(el => el.value.toLowerCase().includes(query.toLowerCase())) : this.courseList; clearTimeout(this.timer); this.searchLoad = false; this.rangeNumber = 10; this.timer = null; }, 500); }, // Listen for the display and hiding of the select drop-down box visibleChange(flag) { // Initialize list flag when displaying && this.filterMethod(""); // Initialize default value this.rangeNumber = 10; }, // Get options async getOptions() { await searchCourseware().then(res => { let list = res.data || []; //Default displayed data this.options = list; //Original data this.courseList = list; }); } } } Note:
Summarize:I have changed to a new working environment and am now starting to work on the backend management system. I will encounter various problems to a greater or lesser extent. As always, I will record the problems encountered during development in my notes. A good memory is not as good as a bad pen. I hope to plant the seeds now and reap the fruits next autumn. JY This is the end of this article about the implementation of optimized select multiple data loading in Element. For more relevant Element select multiple data loading content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: How to convert a column of comma-separated values into columns in MySQL
>>: Detailed explanation of several methods of deduplication in Javascript array
1. Enter the host machine of the docker container...
1. Abnormal performance of Docker startup: 1. The...
The experimental code is as follows: </head>...
In the previous sections, we discussed aspects of ...
The test environment is set up with a mariadb 5.7...
Download the redis image docker pull yyyyttttwwww...
Table of contents 01 ReplicaSet Architecture 02 I...
As shown below: select a1,a2,a1+a2 a,a1*a2 b,a1*1...
Table of contents Compare the empty string '&...
This article uses examples to illustrate the comm...
When using the MySQL database, if you have not lo...
The nginx logs are collected by filebeat and pass...
html,address, blockquote, body,dd,div, dl,dt,fiel...
The property of centering text in CSS is very simp...
In our daily work, we often come into contact wit...