解决vue + element dialog弹框 表单无法重置问题
程序员文章站
2022-04-04 12:54:26
...
问题:使用 el-dialog+表单发现无法使用 this.$refs[‘form’].resetFields()清空表单
问题分析:this.$refs[‘form’].resetFields()本质是将表单数据恢复至初始状态;打开表单之前el-dialog中的内容尚未渲染,
// 修改按钮
handleUpdate (row) {
this.open = true
this.formData= JSON.parse(JSON.stringify(row))
})
}
此时表单的初始状态数据应该是row传递过来的数据,所以调用无法清空表单
this.$refs['form'].resetFields()
解决:
// 修改
handleUpdate (row) {
this.open = true
this.$nextTick(() => {
this.menuForm = JSON.parse(JSON.stringify(row))
})
}
this.$nextTick作用:在下次dom更新循环结束之后执行延迟回调。在修改数据之后立即使用这个方法,获得更新后的dom。
参考:https://www.cnblogs.com/papi/p/9268801.html
vue.nextTick()方法的使用详解(简单明了)