ant-design-vue Warning: You cannot set a form field before rendering a field associated with the value.

使用了表单的方法setFieldsValue(),来设置一组输入控件的值,传入的值为object,但是传入的值要和表单的值一一对应,能少传不能多传

const fieldValues = {name:'winyh', age:20} 当 name=age 的表单项并没有渲染在页面时就会报错!

form.setFieldsValue(fieldValues)

  

原文地址:https://www.cnblogs.com/winyh/p/14666050.html