我正在使用节点快递和角度。在我的 express app.js 中,我声明了一个路由并将一个变量传递给呈现的页面,就像这样......
app.get('/test' function(req, res){
res.render('test', { user: 12345 });
});
在我的“测试”视图中,我使用 ng-controller 将容器链接到角度,就像这样......
<div ng-controller='testCtrl'> <!--some markup here--> </div>
在我的 angular controllers.js 中,我为我的视图声明了一个函数,就像这样......
function testCtrl($scope) {
/*...some code here...*/
}
如何在控制器函数内部访问从 express 传递给视图的“用户”变量?