在vue3项目中,链式调用接口的时候,报错:Property 'code' does not exist on type '{},如下代码:
api1.then(res=>{...return api(options)
}).then(res2 =>{if(res2.code==200){ // 这里报错 Property 'code' does not exist on type '{}...}
})
简单处理的方式:
1. res2 换成 (res2 :any)
api1.then(res=>{...return api(options)
}).then( (res2ad:any) =>{ // 处理方式1if(res2.code==200){ ...}
})
2. res2使用的时候用(res2 as any)
api1.then(res=>{...return api(options)
}).then(res2 =>{if((res2 as any).code==200){ // 处理方式2...}
})
通过以上方式就能简单处理。