我创建了一个抓取用户email & password
的函数,然后在数据库中运行几个检查以查看详细信息是否有效。如果详细信息有效,则用户将被解析回API
密钥。
但由于某些原因,某些函数在其他函数之前被调用,而我在变量undefined
上得到userObj
。
在函数中我添加了控制台日志0,1,2,4和5,这样你就可以看到我调用函数时得到的奇怪输出。我将在下面包含我的代码和控制台输出!我正在为我的模型使用sequalize
,我知道他们正在返回正确的数据,因为我已经对它进行了测试。我也在使用promises
。
var auth = {
login: function(req, res) {
var email = req.body.email || '';
var password = req.body.password || '';
// If nothing parsed, return json obj
if (email == '' || password == '') {
console.log("1");
res.status(401);
res.json({
"status": 401,
"message": "Invalid credentials"
});
return;
}
// Fire a query to your DB and check if the credentials are valid
var dbUserObj = auth.validateUser(email, password);
console.log("0 _____");
console.log(dbUserObj); // I am returning undefined??? Why the!
if (!dbUserObj) { // If authentication fails, we send a 401 back
res.status(401);
res.json({
"status": 401,
"message": "Invalid credentials"
});
return;
}
console.log("1 ____");
authToken.create({ userId: dbUserObj.userId, token: genToken(dbUserObj)}).then(function(results){
res.json("token", results.token);
});
console.log("2 ____");
},
validateUser: function(email, password) {
// console.log(email + " pass: " + password);
console.log("3 ____");
user.findAll({
where: {
email : email,
password : password
},
raw: true
}).then(function(results) {
console.log("4 _____");
console.log(results);
return results;
// results prints out with all the correct values!!!!!!!!!!
}).catch(function (err) {
return err;
console.log(err);
});
console.log("5 _____");
},
你可以看到我在dbUserObj
对象上未定义,但老实说我不知道为什么因为我打印出结果BEFORE
我实际上正在返回它们(As你可以在下面看到。)
3 ____
5 _____
0 _____
undefined
POST /login/ 401 1.341 ms - 46
Executing (default): SELECT `userId`, `name`, `password`, `email`, `authKey`, `profilePic`, `coverPic`, `description`, `createdAt`, `updatedAt` FROM `user` AS `user` WHERE `user`.`email` = 'jameswain10@gmail.com' AND `user`.`password` = 'f6588fc86e19db0936d9b7e8fd3d6c6544af6cdcc3ce161da88adcdb4b952adb';
4 _____ RESULTS ARE BELOW ----
[ { userId: 1,
name: 'James',
password: 'f6588fc86e19db0936d9b7e8fd3d6c6544af6cdcc3ce161da88adcdb4b952adb',
email: 'james@gmail.com',
authKey: '$$$Ddjjdafjjadsfjadsjfjadfsj2',
profilePic: 'default.png',
coverPic: 'default.png',
description: 'This user doesn\'t have a description!',
createdAt: Wed Dec 23 2015 12:48:35 GMT+1100 (AEDT),
updatedAt: Wed Dec 23 2015 12:48:35 GMT+1100 (AEDT) } ]
正如您在上面的console output
中所看到的,有些日志会在它们之前和之后注销?有谁知道为什么会发生这种情况!?
答案 0 :(得分:2)
您遇到了Async问题。
让验证用户返回承诺:
validateUser: function(email, password) {
// console.log(email + " pass: " + password);
console.log("3 ____");
return user.findAll({
where: {
email : email,
password : password
},
raw: true
});
在您的登录功能中,您可以then
该功能的结果。
login: function(req, res) {
var email = req.body.email || '';
var password = req.body.password || '';
// If nothing parsed, return json obj
if (email == '' || password == '') {
console.log("1");
res.status(401);
res.json({
"status": 401,
"message": "Invalid credentials"
});
return;
}
// Fire a query to your DB and check if the credentials are valid
auth.validateUser(email, password)
.catch(function() {
//.. handle error
}
.then(function(results) {
var dbUserObj = results;
console.log("0 _____");
console.log(dbUserObj); // I am returning undefined??? Why the!
if (!dbUserObj) { // If authentication fails, we send a 401 back
res.status(401);
res.json({
"status": 401,
"message": "Invalid credentials"
});
return;
}
console.log("1 ____");
authToken.create({ userId: dbUserObj.userId, token: genToken(dbUserObj)}).then(function(results){
res.json("token", results.token);
});
console.log("2 ____");
}
},
奖励答案:
你得到了未定义,因为这一行:
then(function(results) {
console.log("4 _____");
console.log(results);
return results;
// results prints out with all the correct values!!!!!!!!!!
这会将结果返回到“then”函数,该函数创建了另一个使用dbobject解决的promise,但是后来没有将它返回到top函数。在不返回承诺的函数中使用promises或者调用回调是一个很好的红旗,你做错了。