1
我想用knex js使用模板中的數據(使用handlebars和expressjs)來驗證用戶來創建一個查詢。我創建了一個查詢,然後將其添加到驗證用戶登錄後的變量中。 問題是我有麻煩讓knex查詢做我想做的事,我不知道我做錯了什麼。在knex js中查詢用戶和密碼驗證
var usernameReq = req.body.username;
var passwordReq = req.body.password;
var pass;
knex('users').where({
username: usernameReq }).select('password').then(
function(result){
pass = result;
}).catch(function(error) {
console.log(error);
});
if (passwordReq === pass){
//login
}