router.post("/login", async (req, res) =>
{
try
{
const user = await User.findByCredentials(req.body.email, req.body.password, req.body.email)
console.log(user)
if(user === undefined)
{
return res.sendStatus(404)
}
const token = await user.generateAuthToken()
console.log(token)
}
catch(e)
{
console.log(e)
}
})
我正在从我的后端发送状态码 404。但问题是我不能在我的前端 js 中使用这个状态码。
const xhr = new XMLHttpRequest();
let form = JSON.stringify({
email: $uyeolFormEmail.value,
password: $uyeolFormPassword.value
});
xhr.open("POST", "/login")
xhr.setRequestHeader('Content-type', 'application/json')
xhr.send(form)
console.log(xhr.status)
if(xhr.status === 200 || xhr.status === 201)
{
window.location.href="/takvim"
}
else if(xhr.status > 299)
{
window.location.href="/"
}
我试过 xhr.status 但没有用。有什么建议吗?
拉莫斯之舞
相关分类