Home  >  Q&A  >  body text

ng-repeat 2 level loop - Stack Overflow

<li ng-repeat="a in b">
<a>{{a.id}}</a> //这里是循环数组出id
<ul>
    <li ng-repeat="">{{}}</li> //这里该怎么循环出arr的name?
</ul>
</li>

data structure

[
{"id":1,
  "ps":1,
  "arr":[{"name":2,"user":13},{"name":3,"user":24}]
},
{"id":2,
 "ps":2,
 "arr":[{"name":4,"user":34},{"name":5,"user":45}]
}
]
PHP中文网PHP中文网2683 days ago550

reply all(3)I'll reply

  • 给我你的怀抱

    给我你的怀抱2017-05-16 13:20:45

    <li ng-repeat="a in b">
    {{a.id}} //Here is the loop array to get the id
    <ul>

    <li ng-repeat="c in a.arr">{{c.name}}</li> //这里该怎么循环出arr的name?

    </ul>
    </li>

    Isn’t this okay?

    reply
    0
  • 迷茫

    迷茫2017-05-16 13:20:45

    <li ng-repeat="a in b">
        <a>{{a.id}}</a> 
        <ul>
            <li ng-repeat="c in a.arr">{{c.name}}</li>
        </ul>
    </li>

    reply
    0
  • 我想大声告诉你

    我想大声告诉你2017-05-16 13:20:45

    $scope.b=[
            {"id":1,
                "ps":1,
                "arr":[{"name":2,"user":13},{"name":3,"user":24}]
            },
            {"id":2,
                "ps":2,
                "arr":[{"name":4,"user":34},{"name":5,"user":45}]
            }
        ]
    <li ng-repeat="a in b">
        <a>{{a.id}}</a>
        <ul>
            <li ng-repeat="c in a.arr">{{c.name}}</li>
        </ul>
    </li>

    reply
    0
  • Cancelreply