This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
var express = require('express');
var router = express.Router();
const {
loginService
} = require("../services/userService")
formatResponse
} = require("../utils/tools")
/* GET home page. */
router.post('/login', async function (req, res, next) {
//移交service处理
console.log(1)
const result = await loginService(req.body)
if (result.token) {
//有token,登陆成功
res.send(formatResponse(0, "", result.data))
} else {
throw new Error("账号或密码错误")
}
});
module.exports = router;