标签: angularjs angularjs-components bindonce
在component上,是否可以像bindonce那样绑定?请举例说明。
答案 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 }"