req.body.UserPass;//2
pool.query("SELECT UserPass FROM user where UserName=? ",[UserName],function(req,data){
console.log(data[0].UserPass);
if( UserPass == data[0].UserPass){
//что тут прописать что бы возвращало true
console.log("ладно,заходи");}else{
console.log("-");
}
});
});
res.status(200).json({ authorized: true }).
Обсуждают сегодня