Vue + element to dynamically display background data to options

Vue + element to dynamically display background data to options

need:

Implement dynamic display of option values ​​in the selector instead of hard-coded data. My role ID data is as follows:

insert image description here

Now we need to display these data requests on the option

The implementation is as follows:

Use the selector in element-ui:

<el-form-item label="Role ID:" prop="roleId">
    <el-select v-model="addUserForm.roleId" placeholder="Please select role ID">
      <el-option
          v-for="item in roleList"
          :key="item.value"
          :label="item.label"
          :value="item.value">
      </el-option>
    </el-select>
</el-form-item>

Customize an empty array in data:

insert image description here

Write the request to implement data in methods:

getroleList() {
   getRoleList(this.name).then(res => {
     let result = res.data.items;
     console.log("Get role list: " +JSON.stringify(this.roleList));
     result.forEach(element => {
     	this.roleList.push({label:element.name,value:element.name});
     });
     }).catch( error => {
       console.log(error);
  });
},

In created implementation display:

insert image description here

Where getRoleList is the get request I encapsulated:

insert image description here

The results are as follows:

insert image description here

This is the end of this article about how to use Vue + element to dynamically display background data to options. For more relevant Vue element dynamic options content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Vue+Element ui sets dynamic header operation according to the background return data
  • Vue+element uses dynamic loading routing to implement the operation of displaying the three-level menu page

<<:  Solve the problem of Linux FTP anonymous upload and download starting automatically

>>:  MySQL 8.0.11 Installation Guide for Mac

Recommend

Detailed analysis of Vue child components and parent components

Table of contents 1. Parent components and child ...

How to set a dotted border in html

Use CSS styles and HTML tag elements In order to ...

JavaScript Interview: How to implement array flattening method

Table of contents 1 What is array flattening? 2 A...

Alibaba Cloud ESC Server Docker Deployment of Single Node Mysql

1. Download the accelerated version of msyql dock...

Example of how to set up a multi-column equal height layout with CSS

Initially, multiple columns have different conten...

A brief analysis of the use of zero copy technology in Linux

This article discusses several major zero-copy te...

Javascript File and Blob Detailed Explanation

Table of contents File() grammar parameter Exampl...

MySQL database query performance optimization strategy

Optimize queries Use the Explain statement to ana...

How to handle concurrent updates of MySQL data

Will UPDATE lock? Will the SQL statement be locke...

N ways to align the last row of lists in CSS flex layout to the left (summary)

I would like to quote an article by Zhang Xinxu a...

Zabbix3.4 method to monitor mongodb database status

Mongodb has a db.serverStatus() command, which ca...