关于javascript:axios如何定义返回数据类型

46次阅读

共计 273 个字符,预计需要花费 1 分钟才能阅读完成。

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} 这种的数据结构,在哪里定义呢?

正文完
 0