我在我的简单Express应用程序上设置了Passport身份验证,它运行正常,我在索引页面上显示req.user,如下所示:
<% if (!isAuthenticated) { %>
<a id="signIn" href="/login">Sign In</a>
<% } else { %>
<h3 id="welcomeMsg"><%=user.id%></h3>
<h2 id="userBalance"><%=user.balance%></h2>
<a href="/logout">Log Out</a>
<% } %>
在index.js中:
app.get('/', function(req, res){
res.render('index', {
isAuthenticated: req.isAuthenticated(),
user: req.user
});
});
我想要做的是在我的公共目录中的客户端js文件中确认谁登录的用户名。在该文件中使该变量可用的最简单,最直接的方法是什么?
谢谢
答案 0 :(得分:11)
由于passport.js
使用cookie保存会话,
您可以在应用程序中添加一个简单路径,以json格式提供当前记录的用户数据:
app.get('/api/user_data', function(req, res) {
if (req.user === undefined) {
// The user is not logged in
res.json({});
} else {
res.json({
username: req.user
});
}
});
使用jQuery.getJSON()或任何其他可以请求json内容的方法,使用客户端javascript访问它。
$.getJSON("api/user_data", function(data) {
// Make sure the data contains the username as expected before using it
if (data.hasOwnProperty('username')) {
console.log('Usrename: ' + data.username);
}
});