我正在使用node.js和passport进行身份验证,如果用户无法进行身份验证,我需要向客户端发送“登录失败”消息。我的应用程序也使用表达中间件。 我在客户端使用angular.js。
目前我正在使用该命令来显示静态html:
var loginStatus = 'Failed';
res.sendfile('views/login.html'); // What should I add/change here in order to send the loginStatus variable ?
这是我的angular.js控制器:
function MainController($scope) {
$scope.loginStatus = // What should I write here in order to get 'Failed' ?
}
我在上面的评论中发表了我的问题。