This article example shares the specific code of elementUI to implement the cascade selector for your reference. The specific content is as follows 1. Call the interface from the backend and pass data to the frontend 2. Use VUE code to display cascading options <el-cascader :disabled="isDisabled" :props="defaultParams" :options="options" v-model="selectedOptions" :show-all-levels="false" filterable :clearable="true" ></el-cascader> 3. Define JS data() { options: [], selectedOptions: [], defaultParams: { label: "name", value: "code", children: "children", }, }, created() { listArea(330000).then((response) => { console.log(response); this.options = this.getTreeData(response); this.loading = false; }); }, methods: { // Recursively eliminate empty arrays getTreeData(data) { // Loop through json data for (var i = 0; i < data.length; i++) { if (data[i].children.length < 1) { // If children is an empty array, set children to undefined data[i].children = undefined; } else { // If children is not an empty array, continue to recursively call this method this.getTreeData(data[i].children); } } return data; } } 4. The display effect is as follows The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: How to use IDEA to create a web project and publish it to tomcat
>>: Why the disk space is not released after deleting data in MySQL
Log in docker login Complete the registration and...
Beginners can learn HTML by understanding some HT...
This article example shares the specific code of ...
Table of contents 1. What I am going to talk abou...
Table of contents In vue2 In vue3 Notes on setup ...
This blog post is about a difficulty encountered ...
1. Project Documents 2. Use HTML and CSS for page...
For some systems with large amounts of data, the ...
Treemaps are mainly used to visualize tree-like d...
When executing yum in dockerfile or in the contai...
Preface When you install MySQL, you usually creat...
Detailed description of media device type usage: ...
Intersection Selector The intersection selector i...
Table of contents Preface What is VirtualDOM? Rea...
First, we need a server with Docker installed. (I...