角度不显示变量

时间:2015-04-17 10:37:16

标签: angularjs express pug

我有玉石模板

 div(ng-app='next-update-stats', ng-controller='FilterController') {{ allofit }}

...脚本中的代码如下:

var app = angular.module('next-update-stats', []).
app.controller('FilterController', function($scope) {
$scope.allofit=[1,2,23,4]
});

{{allofit}}仍然呈现为文字" {{allofit}}"如我所料,字符串不会被[1,2,23,4]取代。

Angular包含在文档中。 所有这些都在Express.js中运行正常。

有什么想法吗?

2 个答案:

答案 0 :(得分:0)

删除点

 var app = angular.module('next-update-stats', []).

答案 1 :(得分:0)

我猜你需要用#{}包裹它,这表示jade有从js返回的东西:

div(ng-app='next-update-stats', ng-controller='FilterController') #{{{ allofit }}}

当然,你需要删除.

var app = angular.module('next-update-stats', []);