使用elementUI的select,当没有匹配的时候默认显示value值;
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
使用elementUI的select,当没有匹配的时候默认显示value值;
问题:多处页面用到了相同的选择,为避免多次请求接口,选项列表存到了localstrage中,对选项增删改时,更新localstrage。但是有些时候后端接口返回的value值,已经删除了,localstrage中无法匹配到对应的label,回显显示value值。
解决:在公用表单组件中,如果type为select,循环localstrage的数组,如果没有匹配到的,设置该表单值为空
```javascript
this.itemArr.forEach((item) => {
if(item.type === 'select'){
let ind = item.optList.findIndex((temp) => {
return temp['id'] === this.formData[item.props]
})
if(ind === -1){
this.$set(this.formData,item.props,'')
}
}
})
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)