我无法让连接闪存在续集回调函数中工作。
router.route('/')
.post(function(aRequest, aResponse) {
var data = aRequest.body;
models.users.findOne({
where: {
email: data.email
}
}).then(function (aUser) {
if (!aUser) {
bcrypt.hash(data.password, null, null, function(err, hash) {
if(err) {
return next(err);
}
models.users.create({
firstname : data.firstname,
lastname : data.lastname,
email : data.email,
password : hash
}).then(function () {
aRequest.flash('success', 'User successfully created.');
}).done(function () {
aResponse.redirect('/login');
});
});
}
else {
// aRequest.flash('error', 'This email address is already registered');
aResponse.redirect('/login');
}
});
});
以上是我当前的代码,已经尝试了一些变体,在 .then() 中调用了 flash 和重定向,尝试了 2 个 .then() 和现在的 .done()。
我收到以下错误:
未处理的拒绝 TypeError: undefined is not a function at Instance.set (/home/node/shared/Heroku/landbou/node_modules/sequelize/lib/instance.js:348:68)
这可以通过删除 aRequest.flash(...) 轻松解决。
是的,' router.use(flash()); ' 被称为更高的。
一切都在继续,所以它不是应用程序中断错误,但我确实需要消息闪现,否则我必须创建额外的浪费路由来处理用户注册的成功/失败。