У меня есть код базы ниже
passport.use(new LocalStrategy({
usernameField: 'emailAddress',
passwordField: 'password',
passReqToCallback: true
},
function(req,username, password, next) {
var res =""; // this is the real issue, I don't know where to find res, or what should I initialize to re
console.log('psprt val');
userController.ValidateLogin(req,res,function(userDetails){
req.user = userDetails;
return next(null,userDetails);
});
}));
userController.ValidateLogin возвращает ошибку в формате, подобном
userController.ValidateLogin = function(req,res,userDetails) {
return res.send({ Status:403, Msg: "Not allowed" });
}
Но он говорит, что res.send не является функциейкак есть res undefined, как отправить res, чтобы у меня было такое сообщение взамен