节点

app.get('/profile', function(req, res) {
    res.render('profile.ejs', { authUser : req.user });
});


角度的

function Ctrl($scope) {
    $scope.user = authUser; // from the view
}


我需要访问Angular代码中的authUser。我熟悉使用$ http.get从res.json(...)获取数据,但不确定在这种情况下如何进行操作。

最佳答案

res.render仅将authUser发送到EJS视图引擎,而不发送回客户端。如果只需要显示用户信息,则可以在profile.ejs中添加之类的内容。

07-28 10:13