How to repeat elements pulled from an array inside a javascript object literal with ng-repeat
问题 I'm repeating elements from a big javascript object literal. Currently, I display the tabbed navigation, image, and title for each product correctly. I cannot get the info to display correctly however. I have the following code: <div ng-repeat="section in tab.sections" class="product"> <div ng-repeat="child in section.children" ng-if="productIsActive(child, $index)"> <div class="additionalProductInfo"> <nav class="secondaryTabbedNavigation"> <ul> <li class="active" ng-repeat="pTabs in child