绑定属性只有一次(比如bindonce)

时间:2016-02-26 14:44:04

标签: angularjs angularjs-components bindonce

component上,是否可以像bindonce那样绑定?请举例说明。

1 个答案:

答案 0 :(得分:2)

因为angular有v1.3,所以它使用了bindonce的以下语法

<div ng-repeat="item in ctrl.results">
    <div>{{ ::item.name }} - {{ ::item.description }}</div>
</div>
<div ng-if="::vm.user.loggedIn"></div>
for class
ng-class="::{ loggedIn: vm.user.loggedIn }"