console.log(this.queryForm.crteTimeOption)的结果为 Proxy(Object) {certType: '1', certno: undefined, name: undefined, crteTimeOption: undefined, beginTime: '', …} 打开折叠的信息发现crteTimeOption: (2) ['20230609', '20230713'];为啥显示crteTimeOption: undefined,而具体信息中 crteTimeOption: (2) ['20230609', '20230713']
时间: 2023-12-30 18:06:18 浏览: 272
Vetur-VSCode的Vue工具。-Vue.js开发
根据你提供的信息,可以看出this.queryForm.crteTimeOption在控制台中输出的结果为Proxy(Object) {certType: '1', certno: undefined, name: undefined, crteTimeOption: undefined, beginTime: '', …},其中crteTimeOption为undefined,但是在折叠的信息中显示crteTimeOption: (2) ['20230609', '20230713'],这可能是因为在控制台中输出this.queryForm.crteTimeOption时,它的值还没有被更新。
你可以尝试在代码中打印出this.queryForm.crteTimeOption的值,看看它是否正确。如果它的值确实是undefined,那么可能是在其他地方出现了问题,导致crteTimeOption没有被正确赋值。
阅读全文