账号密码我有设置
来源:5-11 开发路由(删除博客路由和登录路由)
ZPF_NEXT
2021-10-19
username和password为undefined
尝试打印req.body,值为undefined,
const loginCheck = (username, password) => {
if (username === 'zhangsan' && password === '123') {
return true
}
return false
}
module.exports = {
loginCheck
}
写回答
1回答
-
双越
2021-10-20
req.body 是 undefined ,那你就从 req 着手排查问题。
你是用过postman 发送的请求吗?截图我看看
022021-10-20
相似问题