need:Implement dynamic display of option values in the selector instead of hard-coded data. My role ID data is as follows: 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: 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: Where getRoleList is the get request I encapsulated: The results are as follows: 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:
|
<<: Solve the problem of Linux FTP anonymous upload and download starting automatically
>>: MySQL 8.0.11 Installation Guide for Mac
Database MySQL version 8.0.18 Download a DBeaver....
Table of contents 1. Parent components and child ...
Query Cache 1. Query Cache Operation Principle Be...
VMware tools provides great convenience for using...
Use CSS styles and HTML tag elements In order to ...
Table of contents 1 What is array flattening? 2 A...
1. Download the accelerated version of msyql dock...
Initially, multiple columns have different conten...
This article discusses several major zero-copy te...
1. Docker pulls the image docker pull mysql (pull...
Table of contents File() grammar parameter Exampl...
Optimize queries Use the Explain statement to ana...
Will UPDATE lock? Will the SQL statement be locke...
I would like to quote an article by Zhang Xinxu a...
Mongodb has a db.serverStatus() command, which ca...