element的select选择器数据回显
程序员文章站
2022-06-07 18:36:30
...
话不多说,直接上代码:
<el-form-item label="所属企业:" class="width-12">
<el-select
v-model="basicInfo.unitId"
filterable
remote
clearable
reserve-keyword
placeholder="请输入关键字"
:remote-method="selectUnit"
@change="change"
@clear="clearUnit"
>
<el-option
v-for="item in selectOption"
:key="item.unitId"
:label="item.unitName"
:value="item.unitId"
></el-option>
</el-select>
</el-form-item>
根据需求,我的修改和新增页面是同一个,在修改的时候就需要将数据回显到页面。
1、拿到需要回显的数据
2、将数据放到选项electOption数组中
// 车辆所属单位(远程搜索)
this.selectOption=[]
this.selectOption.push({
unitName: val.unitName,
unitId: val.unitId
});
3、将值传递input框内.basicInfo.unitId = this.selectOption[0].unitId;
值得注意的是:选择器有个坑:key="item.unitId"
,绑定的这个key一定要是item里面的某一键值对,不然会回显失败。
上一篇: js处理时间格式
下一篇: 获取mysql 所有数据类型列表
推荐阅读
-
前端笔记-thymeleaf获取及回显select数据(combox)
-
Android TableLayout数据列表的回显清空实现思路及代码
-
Android TableLayout数据列表的回显清空实现思路及代码
-
vue2.0 element-ui中el-select选择器无法显示选中的内容(解决方法)
-
vue组件表单数据回显验证及提交的实例代码
-
vue2.0 element-ui中el-select选择器无法显示选中的内容(解决方法)
-
layui table数据修改的回显方法
-
element编辑表单el-radio回显之后无法选择的问题解决
-
vue组件表单数据回显验证及提交的实例代码
-
解决element ui select下拉框不回显数据问题的解决