所以这是我的问题:
我有以下内容:
<li bindonce ng-repeat="value in Types" ng-include="'views/repeaters/types.html'"></li>
我想知道这是否是使用 bindonce 的正确方法,以便 ng-repeat 不会有 $watch?我是否也应该把它放在 ng-include 之前以及这样:
<li bindonce ng-repeat="value in Types" bindonce ng-include="'views/repeaters/types.html'"></li>
这样,ng-include 将不会为其创建 $watch。
对 ng-class、ng-click 使用 bindonce 怎么样?是否可以进行 bo-click 和 bo-class ?谢谢!