我在项目中使用Locomotivejs和passportJS进行身份验证,我在网上发现了一些代码来处理注册:
AccountController.create = function() {
var account = new Account();
console.log("test");
account.email = this.param('email');
account.password = this.param('password');
account.name.first = this.param('first');
account.name.last = this.param('name.last');
var self = this;
account.save(function (err) {
if (err) {
console.log(err);
return self.redirect(self.urlFor({ action: 'new' }));
}
return self.redirect(self.urlFor({ action: 'login' }));
});
};
但是我无法弄清楚如何在页面上显示错误消息,例如“用户名已存在”或“密码不匹配”等。我只能将它们转到console.log()。有谁知道我怎么能这样做?
答案 0 :(得分:0)
connect-flash对于这种情况非常有用:
// in your app's config:
var flash = require('connect-flash');
...
app.use(flash());
...
// in your #create controller:
if (err) {
req.flash('error', 'YOUR ERROR MESSAGE HERE');
return self.redirect(self.urlFor({ action: 'new' }));
}
// in your #new controller:
res.render('TEMPLATE', { errors: req.flash('error') });
在模板中,检查errors
是否存在(它是一个数组)并渲染消息。