一到这个登陆 就会显示 postman里一直在sending request ,然后报错 handleUserRouter is not a function
来源:5-11 开发路由(删除博客路由和登录路由)
慕雪0323865
2020-08-20
Ïconst handleUserRouter = (req, res) => {
const method = req.method
//登陆
if (method === 'POST' && req.path === '/api/user/login') {
const { username, password } = req.body
const result = loginCheck(username, password)
if (result) {
return new SuccessModel()
}
return ErrorModel('登陆失败')
}
}
这样一般性会是什么问题
写回答
1回答
-
双越
2020-08-20
把详细的报错信息,截图发出来。
00
相似问题