如何给method定义统一的返回类型 #311
Unanswered
songpeng154
asked this question in
Q&A
Replies: 1 comment
-
问题请在discussion中开贴。 对于这个问题,推荐在全局响应拦截器中直接返回data数据,然后只要在请求的位置定义data相关的类型即可。 interface Response<R> {
code: number;
msg: string;
data: R;
}
// 使用
alovaInstance.Post<Response<{ list: any[] }>>(...) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
请详细描述bug
假如后台返回的数据格式统一是这样的
我如何给method定义一个统一的返回类型
复现链接
No response
复现步骤
期望的表现
希望能有一个配置统一的返回类型的地方
alova 版本
2.18..0
设备/浏览器/浏览器版本
No response
额外的说明
No response
Beta Was this translation helpful? Give feedback.
All reactions