Skip to content
本页目录

表单调用resetFields()方法后,数组b为[undefined]

javascript
//假设listQuery初始值为
const listQuery={
	a:undefined,
    b:undefined, //但b在使用中是数组,这里初始值应该为[]而不是undefined
}
this.$refs['listQuery'].resetFields() //初始化listQuery下的字段后, b:[undefined],

//  b的初始值应该是[]