我只是对我遇到的这个问题感到好奇:
在 MainController 我有这个:
$scope._layout = { currentYear: moment().format('YYYY') };
在 html 布局页面中,我有这个。
[...]
<body class="" ng-controller="MainController">
<!-- BEGIN PAGE CONTAINER-->
{% block content %}{% endblock %}
<!-- END CONTAINER -->
<span>{{_layout.currentYear}}</span>
[...]
上面的这个不起作用,{{_layout.currentYear}} 什么都不显示,但如果我把它改成 ng-bind,那么它就起作用了。
[...]
<body class="" ng-controller="MainController">
<!-- BEGIN PAGE CONTAINER-->
{% block content %}{% endblock %}
<!-- END CONTAINER -->
<span ng-bind="_layout.currentYear"></span>
[...]
为什么 {{_layout.currentYear}} 语法不起作用?