作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这两个 API 处理程序:
module.exports.loginWeb = function (request, reply, next) {
if (request.auth.isAuthenticated) {
return reply.redirect('/');
}
if(request.method === 'get'){
reply.view("account/login", { title: 'Login' }, {layout: 'account'});
}else{
console.log(request);
login(request, reply, next, 'web');
}
};
module.exports.registerWeb = function(request, reply, next) {
if (request.auth.isAuthenticated) {
return reply.redirect('/');
}
if(request.method === 'get'){
reply.view("account/register", { title: 'Register' }, {layout: 'account'});
}else{
// checkbox1 name should be changed
if (!request.payload.checkbox1){
return reply('Please accept Terms & Conditions')
}
register(request, reply, next, 'web');
}
};
注册处理程序工作正常,但登录处理程序出现错误,ReferenceError:未捕获错误:请求未定义。
但是请求已成功打印在该行上方。可能是什么问题呢?正如我所说,注册处理程序可以正常使用相同类型的代码。
编辑:添加登录功能
function login(register, reply, next, flag){
if (!request.payload.email || !request.payload.password){
return reply('Please enter email and password');
}
Account.findOne({email: request.payload.email[0]}, function(err, user){
if (err){
return reply(err)
}
else {
if (!user){
return reply('user doesnt exists')
}
else {
//doing bunch of stuff
}
}
})
}
最佳答案
问题出在 login
函数中 - request
未定义为此函数的参数。也许你想写:
login(request, ...
你在哪里
login(register, ...
关于javascript - 引用错误: For request with hapi/Node. js,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31244399/
我是一名优秀的程序员,十分优秀!