gpt4 book ai didi

node.js - 如何将对象从 Node 传递到 View 中以便在 Angular 中使用?

转载 作者:太空宇宙 更新时间:2023-11-04 02:32:21 24 4
gpt4 key购买 nike

Node

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

Angular

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

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

最佳答案

res.render 仅将 authUser 发送到 EJS View 引擎,而不返回到客户端。如果您只需要显示用户信息,那么您可以向 profile.ejs 添加类似 <%= authUser.displayName %> 的内容。

关于node.js - 如何将对象从 Node 传递到 View 中以便在 Angular 中使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25564367/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com