我正在尝试比较密码以登录用户,但是我不断收到“此请求无响应。”
这是我的发帖路线。
router.route("/login/:username1").post(async (req, res) => {
const userexist = User.find(username=>userexist.username=req.body.username1)
if(userexist == null)
{
return res.status(400).json("Cannot find user");
}
try
{
if(await bcrypt.compare(req.body.password, userexist.password))
{
res.json("success");
}
else
{
res.json("Not Allowed");
}
} catch {
res.status(500).json();
}
});
这是我登录页面上的发帖方法。
onSubmit(e) {
e.preventDefault();
const isValid = this.validate();
const username1=this.state.username;
if (isValid) {
const user = {
username: this.state.username,
password: this.state.password,
};
axios
.post("http://localhost:5000/users/login/"+ username1, user)
.then((res) => console.log(res.data));
this.setState(initialState);
}
}
答案 0 :(得分:0)
进行一些更正并查看操作方法:
axios.post("http://localhost:5000/users/login/"+ username1, user)
find
函数进行校正router.route("/login/:username1").post(async (req, res) => {
const userexist = await User.find(user=>user.username==req.body.username) //<---- make correction to find method ... use await and use correct req body object i.e. username not username1
if(userexist == null)
{
return res.status(400).json("Cannot find user");
}
try
{
if(await bcrypt.compare(req.body.password, userexist.password))
{
res.send("success"); //<----- as best practice, while sending strings just use res.send('success')... res.json is not reqd
}
else
{
res.send("Not Allowed"); //<----- for strings, it is better to use res.send instead of res.json
}
} catch {
res.status(500).json(); //<----- remember to pass meaningful error message back to client
}
});
答案 1 :(得分:-1)
只要切开任何人都有同样的问题。
问题是user.password
返回一个必须像这样访问的数组,user[0]['password']
现在可以正常工作了。我正在使用React Router,并且我也通过MongoDB models.js模式使用的.env文件建立了MongoDB连接。
User.find({ username: req.body.username }).then(async (user) => {
if( user.length>0) {
await bcrypt.compare(req.body.password, user[0]['password'],
function(err, result) {
if(result){
res.send('success') ;
}else{
res.send('not allowed') ;
}
});
}