我在 angularjs 中遇到了 ng-repeat 的问题,我想要实现的是只在 html 中制作 ng-repeat 的外部元素,我将在一个示例中介绍它我拥有什么以及我想要实现什么。
我有这样的示例标签集:
<tabset>
<tab heading="{{tabs[0].title}}" active="tabs[0].active" disabled="tabs[0].disabled">
<img ng-show="myPhotos" src="{{tabs[0].content}}" alt="FBphoto">
</tab>
<tab heading="{{tabs[1].title}}" active="tabs[1].active" disabled="tabs[1].disabled">
<a href="{{tabs[1].content}}"></a>
</tab>
</tabset>
我想要的是具有 ng-repeated 元素的 tabset(以避免视图中的数组索引)但内部有不同的元素,是否可以在 angularjs 中顺利实现它?
<tab ng-repeat="tab in tabs" heading="{{tab.title}}" active="tab.active" disabled="tab.disabled">
<img ng-show="myPhotos" src="{{tab.content}}" alt="FBphoto"> <!-- Here I want to have various elements -->
</tab>