ng-repeat 2 level loop - Stack Overflow
PHP中文网
PHP中文网 2017-05-16 13:18:45
0
3
581
<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中文网

认证高级PHP讲师

reply all(3)
给我你的怀抱

<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?

迷茫
<li ng-repeat="a in b">
    <a>{{a.id}}</a> 
    <ul>
        <li ng-repeat="c in a.arr">{{c.name}}</li>
    </ul>
</li>
我想大声告诉你
$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>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!