mtfosbot/libs/route-utils/res-message/index.js

50 lines
741 B
JavaScript
Raw Permalink Normal View History

module.exports = {
Success: {
status: 200,
obj: {
status: 200,
2018-08-15 09:58:59 +00:00
msgCode: 10000,
message: 'success'
}
},
DataFormat: {
status: 400,
obj: {
status: 400,
2018-08-15 09:58:59 +00:00
msgCode: 11000,
message: 'input data format error'
}
},
2018-08-15 12:05:08 +00:00
NotLogin: {
status: 401,
obj: {
status: 401,
message: 'login first'
}
},
Forbidden: {
status: 403,
obj: {
status: 403,
message: 'Forbidden'
}
},
2018-08-15 12:05:08 +00:00
NotFound: {
status: 404,
obj: {
status: {
status: 404,
message: 'not found'
}
}
},
InternalError: {
status: 500,
obj: {
status: 500,
2018-08-15 09:58:59 +00:00
msgCode: 12000,
message: 'server internal error'
}
}
}