resTemplate.js
1020 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
module.exports = {
res:(ctx,status,msg,data) => {
if(!data){
ctx.response.status= status;
ctx.response.body = msg;
}else {
ctx.body = data;
}
},
paramError:(paramName,text,selfData,code) => {
var content = !text ? '是无效字段':text;
if(!selfData){
return {
code:300,
msg:paramName+content
}
}else {
return {
msg:selfData
}
}
},
catchError:(ctx,code,e) =>{
ctx.response.status= 200;
ctx.response.body= {
code:code,
data:{
msg:e
}
};
},
successTemp: (ctx,code,data)=>{
console.log(code)
ctx.response.status= 200;
ctx.response.body= {
code:!data.code ? 200:data.code,
returnData:{
data:data
}
};
}
}