Browse Source

优化一下登录接口错误信息返回

master
巴林闲侠 2 years ago
parent
commit
3c823554be
  1. 4
      api/app/lib/controllers/auth/index.js

4
api/app/lib/controllers/auth/index.js

@ -45,7 +45,9 @@ async function login (ctx, next) {
ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`);
ctx.status = 400; ctx.status = 400;
let message = typeof error == 'string' ? error let message = typeof error == 'string' ? error
: error.response.body.message || "登录失败" : error.response && error.response.body && error.response.body.message ?
error.response.body.message
: "登录失败"
if (message == '账号或密码错误') { if (message == '账号或密码错误') {
message = '无此用户,请使用正确的登录信息' message = '无此用户,请使用正确的登录信息'
} }

Loading…
Cancel
Save