認証に node.js とパスポートを使用しています。ユーザーが認証に失敗した場合は、「ログインに失敗しました」というメッセージをクライアントに送信する必要があります。私のアプリケーションでは、エクスプレス ミドルウェアも使用しています。クライアントで 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' ?
}
上記のコメントに質問を投稿しました。