Sha*_*rye 5 node.js angularjs passport.js connect-flash
我正在学习如何使用nodejs和passport设置身份验证的教程.(http://scotch.io/tutorials/javascript/easy-node-authentication-setup-and-local)
本教程让我使用ejs渲染模板并传入flash数据.
而不是这个,我想使用angularjs.我遇到问题的部分是获取闪存数据.我知道如何使用模板和发送变量,但角度中的内容取代了下面代码中的"req.flash('signupMessage')"?
这是教程显示的代码:
app.get('/signup', function(req, res) {
// render the page and pass in any flash data if it exists
res.render('signup.ejs', { message: req.flash('signupMessage') });
});
Run Code Online (Sandbox Code Playgroud)
这是我设置路线的代码
// public/js/appRoutes.js
angular.module('appRoutes', []).config(['$routeProvider', '$locationProvider', function($routeProvider, $locationProvider) {
$routeProvider
// show signup form
.when('/signup', {
templateUrl: 'views/signup.html',
controller: 'SignupController'
});
$locationProvider.html5Mode(true);
}]);
Run Code Online (Sandbox Code Playgroud)
这是控制器:
// public/js/controllers/SetupCtrl.js
angular.module('SignupCtrl', []).controller('SignupController', function($scope) {
$scope.tagline = 'TEST';
});
Run Code Online (Sandbox Code Playgroud)
小智 1
此处回答了类似的问题:What is the theproper way to log in users using Angular & Express?
TLDR:发布的答案是以下链接,作者在其中描述了您需要将所有护照内容保留在服务器端,然后允许客户端(角度内容)请求有关会话的信息。 http://vickev.com/#!/article/authentication-in-single-page-applications-node-js-passportjs-angularjs
| 归档时间: |
|
| 查看次数: |
472 次 |
| 最近记录: |