Example code for implementing the secondary linkage effect of the drop-down box in Vue

Example code for implementing the secondary linkage effect of the drop-down box in Vue

1. Achieve results

insert image description here

2. Data format returned by the backend

"list": [
      {
        "id": "1178214681118568449",
        "title": "Backend Development",
        "children": [
          {
            "id": "1178214681139539969",
            "title": "Java"
          },
          {
            "id": "1178585108407984130",
            "title": "Python"
          },
          {
            "id": "1454645056483913730",
            "title": "C++"
          },
          {
            "id": "1454645056731377666",
            "title": "C#"
          }
        ]
      },
      {
        "id": "1178214681181483010",
        "title": "Front-end Development",
        "children": [
          {
            "id": "1178214681210843137",
            "title": "JavaScript"
          },
          {
            "id": "1178585108454121473",
            "title": "HTML/CSS"
          }
        ]
      },
      {
        "id": "1178214681231814658",
        "title": "Cloud Computing",
        "children": [
          {
            "id": "1178214681252786178",
            "title": "Docker"
          },
          {
            "id": "1178214681294729217",
            "title": "Linux"
          }
        ]
      },
      {
        "id": "1178214681324089345",
        "title": "System/Operation and Maintenance",
        "children": [
          {
            "id": "1178214681353449473",
            "title": "Linux"
          },
          {
            "id": "1178214681382809602",
            "title": "Windows"
          }
        ]
      },
      {
        "id": "1178214681399586817",
        "title": "Database",
        "children": [
          {
            "id": "1178214681428946945",
            "title": "MySQL"
          },
          {
            "id": "1178214681454112770",
            "title": "MongoDB"
          }
        ]
      },
      {
        "id": "1178214681483472898",
        "title": "Big Data",
        "children": [
          {
            "id": "1178214681504444418",
            "title": "Hadoop"
          },
          {
            "id": "1178214681529610242",
            "title": "Spark"
          }
        ]
      },
      {
        "id": "1178214681554776066",
        "title": "Artificial Intelligence",
        "children": [
          {
            "id": "1178214681584136193",
            "title": "Python"
          }
        ]
      },
      {
        "id": "1178214681613496321",
        "title": "Programming Language",
        "children": [
          {
            "id": "1178214681626079234",
            "title": "Java"
          }
        ]
      }
    ]

The data format may not be the same as above. In my previous article, I used this data format on a tree control, and here it is placed on the secondary linkage.

3. In the vue page

 <!-- Category TODO -->
      <el-form-item label="Course Category">
        <!--First level classification-->
        <el-select
          v-model="courseInfo.subjectParentId"
          placeholder="First level classification" @change="subjectLevelOneChanged">
          <el-option
            v-for="subject in subjectOneList"
            :key="subject.id"
            :label="subject.title"
            :value="subject.id"/>
        </el-select>

        <!-- Secondary Category-->
        <el-select v-model="courseInfo.subjectId" placeholder="Please select">
          <el-option
            v-for="subject in subjectTwoList"
            :key="subject.value"
            :label="subject.title"
            :value="subject.id"/>
        </el-select>
      </el-form-item>
import course from '@/api/edu/course'
import subject from '@/api/edu/subject'
export default {
  data() {
    return {
      saveBtnDisabled: false, // Is the save button disabled? courseInfo:{
        title: '',
        subjectId: '', //Secondary category id
        subjectParentId:'', //First level classification id
        teacherId: '', //teacher id
        lessonNum: 0, //Lesson description: '', //Course introduction cover: '/static/01.jpg', //Default cover image price: 0
      },
      teacherList:[], //Encapsulate all lecturer data subjectOneList:[], //First-level classification subjectTwoList:[] , //Second-level classification BASE_API: process.env.BASE_API //Interface API address}
  },
  created() { //Executed before page rendering //Initialize all lecturers this.getListTeacher()
    //Initialize the first-level classification this.getOneSubject()
  },
  methods: {
    //Clicking a first-level category will trigger a change event and display the corresponding second-level category subjectLevelOneChanged(value){
        //value is the id value of the first-level classification//First traverse all the categories including the first and second levels for (var i = 0; i <this.subjectOneList.length; i++) {
        //Each first level classification var oneSubject=this.subjectOneList[i]
        //Judge: Are all first-level category ids the same as the clicked first-level category id if(value===oneSubject.id){ //=== that is, compare the value and type //Get all second-level categories from the first-level category this.subjectTwoList=oneSubject.children
          //Clear the secondary classification ID value this.courseInfo.subjectId=''
        }
      }
    },
    //Query all first-level categories getOneSubject(){
      subject.getSubjectList()
      .then(response=>{
        this.subjectOneList=response.data.list
      })
    }
  }
}
</script>

The main idea is that when a click event occurs in the first-level drop-down box, we get the id value of the first-level drop-down box (it does not necessarily have to be the id value here), and then traverse the first-level category collection containing all the data, find the object with the same id value as the first-level category selected by the current click event, and then assign its children attribute (my children is a collection of second-level categories in the backend) to the second-level category array object subjectTwoList in the data attribute.
Here, the backend retrieved all the data at once, and I traversed and solved it on the front end. Of course, you can also modify the execution logic of the single-click event. Another method is to use the selected key and the drop-down box key to check all secondary categories in the backend each time, and then assign the found secondary categories to the second drop-down box. However, this method is a bit slow, although it is also a way to implement it.

This is the end of this article about how to use Vue to achieve the secondary linkage effect of the drop-down box. For more relevant Vue drop-down box secondary linkage 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:
  • Get the text and option value of the drop-down box in Vue
  • Solve the problem that the title value remains unchanged when using the vant drop-down box van-dropdown-item in vue
  • The table in vue+Element is editable (select drop-down box)
  • Detailed explanation of vuejs2.0 select dynamic binding drop-down box to support multiple selections
  • Example of drop-down box function implemented by Vue
  • Sample code for Vue and iView to realize provincial and municipal secondary linkage
  • Vue select secondary linkage second level default select the first option value example
  • Vue learning mintui picker selector to achieve provincial and municipal secondary linkage example

<<:  Example of how rem is adapted for mobile devices

>>:  Solve the mysql user deletion bug

Recommend

Summary of basic knowledge points of MySql database

Table of contents Basic database operations 2) Vi...

MySQL data aggregation and grouping

We often need to summarize data without actually ...

Practical Optimization of MySQL Paging Limit

Preface When we use query statements, we often ne...

Vue mobile terminal determines the direction of finger sliding on the screen

The vue mobile terminal determines the direction ...

Solution to the img tag problem below IE10

Find the problem I wrote a simple demo before, bu...

Install and configure ssh in CentOS7

1. Install openssh-server yum install -y openssl ...

Comparison of the use of form element attributes readonly and disabled

1) Scope of application: readonly:input[type="...

js to achieve simple front-end paging effect

Some projects have relatively simple business, bu...

Detailed explanation of the use of Vue Smooth DnD, a draggable component of Vue

Table of contents Introduction and Demo API: Cont...

Analysis of log files in the tomcat logs directory (summary)

Each time tomcat is started, the following log fi...

Solve the problem of Nginx returning 404 after configuring proxy_pass

Table of contents 1. Troubleshooting and locating...