Property 'records' does not exist on type 'AxiosResponse '.
时间: 2024-01-17 07:06:15 浏览: 115
vscode中的vue项目报错Property ‘xxx‘ does not exist on type ‘CombinedVueInstance<{ readyOnly…Vetur(2339)
这个错误是因为在 Axios 的响应中没有名为 'records' 的属性。AxiosResponse 类型只包含 status,headers,config,data 等属性。
要解决此问题,你需要查看你的代码中哪里使用了 'records' 属性,并确定要使用的正确属性。你可以使用 console.log() 或调试器来检查 Axios 响应中的属性。
阅读全文