我有两条路线
ready: function() {
this.test();
}
如何使用帖子请求重定向来填充错误?
我不喜欢app.route('/login')
.get(function (req, res) {
res.render('formUser', {
title: 'Login User',
action: 'login',
error: 'empty or full, depends on redirect'
});
})
.post(function (req, res) {
//some stuff
//no user found then redirect
res.redirect('/users/login');
});
并检查网址