axios.post('/api/user').then((res)=>{
if(res.code === 0){
// 成功
}
})
但是res这里类型提示会告诉我有data/config/headers,就是没有code。
我已经在拦截器中做了处理
axios.interceptors.response.use((response) => {
return response.data;
}, (error) => {
return Promise.reject(error);
});
请问我真实的接口返回的数据结构类似{code,data,msg}这种的数据结构,在哪里定义呢?
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。