是否有一种方法可以模拟ng-repeat创建的相同作用域而不实际使用ng-repeat?
示例结构是
<ul ng-controller="SomeController" ng-model="items">
<li ng-model="item" static-item>static html</li>
<li ng-model="item" static-item>static html</li>
</ul>
然后创建类似的范围,好像我使用了ng-repeat?
<ul ng-controller="SomeController" ng-model="items">
<li ng-repeat="item in items">static html</li>
</ul>
其中通过迭代创建的属性仍然可以在我的staticItem指令中使用(即$ last,$ first,$ middle)?
我正在使用bootstrap angular指令(特别是tab组件),它为每个tab项创建一个独立的范围。标记是通过CMS生成的。