2016-08-17 20 views
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ではループしません。

答えて

0

私はあなたがng-repeat='service in maintGroup.serviceGroup.services'に要素を追加あなたのng-repeat="maintGroup in maintGroups"

てみ内の巣に別の繰り返しをしたいしようとしている、そしてどこかの内側にあなたは私が必要とまさに{{ service.description.customerDescription }}

+1

を呼び出すことができると思います!私は別のng-repeatを入れ子にすることができるかどうか分からなかった。本当にありがとう! :) – user6728173

+0

お寄せいただきありがとうございます。楽しむ – Kraken

関連する問題