嵌套的ng-repeat无法显示正确的值

时间:2018-09-20 05:25:42

标签: angularjs angularjs-ng-repeat

我正在处理一个使用嵌套ng-repeat在html表中显示json值的场景。值正确。

1 个答案:

答案 0 :(得分:1)

您使用AngularJS没问题,但是使用HTML,请尝试this variant

<table width="100%">
 <thead>
   <tr>
     <th>Id:</th>
     <th>Age:</th>
     <th>Subjects:</th>
     <th>Only Lecturer Name</th>
  </tr>
 </thead>
 <tbody>
   <tr ng-repeat="x in student track by $index">
     <td>{{x.id}}</td>
     <td>{{x.age}}</td>
     <td>{{x.subjects}}</td>
     <td>
       <span ng-repeat="j in x.subjects">
         {{j.Lecturer}}
       </span>
     </td>
   </tr>
 </tbody>
</table>