Warning: You cannot set a form field before rendering a field associated with the value。 vue表单赋值失败。
- 错误提示
Warning: You cannot set a form field before rendering a field associated with the value.
modal窗口打开时,初始化绑定表单数据,提示字段绑定数据失败。
- 解决办法
this.$nextTick(() => {
setTimeout(() => {
this.form.setFieldsValue(pick(this.mdl, 'note', 'mark')) // loadsh的pick方法
})
})
setTimeout 很重要!!!