0
私のコードは次のとおりです。多次元JSON配列を反復処理する方法は?
<div class="modal-body">
<p ng-repeat="maintGroup in maintGroups"> Some text in the modal and {{ maintGroup.serviceGroup.services[$index].description.custDescription }} </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
maintGroupには、以下のJSONデータを参照:
[
{
"groupId":"MSG1",
"mileage":150000,
"serviceGroup":{
"description":"BRAKES",
"opCode":"BRK",
"serviceGroupId":"SG1",
"serviceType":"BRAKES",
"services":[
{
"description":{
"custDescription":"Replace right front brake motor",
"descriptionId":"D1"
},
"image":{
"imageId":"IMG1"
},
"serviceId":"S1"
}
私は顧客の記述をループへの道を見つけるのに苦労しています。パスは次のようにする必要があります。maintGroup.serviceGroup.services [0] .description.custDescriptionここで0はiでなければなりません。私はちょうどそれを働かせる方法を知らない。 $ indexはインデックス0のみで動作しますが、残りのng-repeatではループしません。
を呼び出すことができると思います!私は別のng-repeatを入れ子にすることができるかどうか分からなかった。本当にありがとう! :) – user6728173
お寄せいただきありがとうございます。楽しむ – Kraken