关于vue.js:element-ui中的select多选问题

60次阅读

共计 719 个字符,预计需要花费 2 分钟才能阅读完成。

在应用 select 下拉框多选时,在编辑用户角色时,编辑界面为 select 下拉框的 model 赋值了,抉择的数据有问题,输入框中的值不能与下拉框的值对应上。

如图:


解决:

<el-select  ref="select" v-model="roles" placeholder="请抉择用户角色" @change="$forceUpdate()" class="el-select" multiple clearable>
<el-option v-for="item in roleData" :label="item.role" :value="item.serial" :key="item.serial"></el-option>
</el-select>

// 编辑
        editBtn(row) {this.addForm = { ...row}
            console.log(row);
            let arr = []
            for(const data of row.resourceList) {arr.push(data.serial)
            }
            console.log(arr)
            
            this.roles = arr;
            
            this.titleName = '编辑'
            this.dialogVisible = true;
        },

下拉框中的数据源 roleData 是一个数组,选中后的值也是一个数组。然而在后端存储的时候是转换成字符串存到数据库中的,所以在编辑界面从后端获取的返回值是一个字符串,首选要把这个字符串转换成数组,绑定到 select 的 v -model 属性上(留神:选中的值就是下拉框数据源中的 serial)。

@change=”$forceUpdate()” 这是强制刷新

而后在提交的时候把这个数组转换成字符串赋给后盾指定的字段传给后盾就功败垂成啦。

正文完
 0