Antd使用Form组件报错:You cannot set a form field before rendering a field associated with the value.
antd of vue Form组件报错`warning.js?d96e:34 Warning: You cannot set a form field before rendering a field associated with the value. You can use getFieldDecorator(id, options)insteadv-decorator="[id, opti
报错信息:
warning.js?d96e:34 Warning: You cannot set a form field before rendering a field associated with the value. You can use getFieldDecorator(id, options)insteadv-decorator="[id, options]" to register it before render.
报错的场景:
页面编辑时,获取接口数据,进行回显。
使用 setFieldsValue
给 v-decorator
赋值时报错。
this.form.setFieldsValue({ //数据回显
id: res.data.result.id,
linkPhone: res.data.result.linkPhone,
});
报错的原因:
1.注意自己是否使用了使用 setFieldsValue
和 v-decorator
二者缺一不可(有时候会忽略 v-decorator
的使用,用了别的default-value啥的, 本人就是疏忽了这第一条
。
2.this.form.setFieldsValue 传值的时候只能是 form 中用到的参数(即是 getFieldDecorator 方法中的 field )没有的 field 一律不允许多传,否则就会报错。
这里,多传递了多余的字段,自己检查一下,看看是否传递了页面中没有的字段。
3.在form组件显示出后,再用this.form.setFieldsValue
4.在this.$nextTick()中使用this.form.setFieldsValue
5.在使用this.form.setFieldsValue时,赋值的数据要一一匹配field,用不到的不要赋值即可。
更多推荐
所有评论(0)