1

大批

[
  code: 'code',
  specName: [
              0: 'First',
              1: 'Second',
              2: 'Third'
            ],
  year: [
              0: '2011',
              1: '2012',
              2: '2013'
            ]
];

内幕

我正在使用 AngularJS 输出数据,使用ng-repeat="name in module.specName". 我想做的是链接year[0]等等specName[0]。所以我的输出看起来像:

 -------------------
| specName |  year  |
 -------------------
|  First   |   2011 |
 -------------------
|  Second  |   2012 |
 -------------------
|  Third   |   2013 |
 -------------------

问题

我能否指出如何实现这一目标的正确方向。是否有.filter我必须编写的角度或角度应用程序中的一些数据重组或其他东西。

4

2 回答 2

3
<div ng-repeat="(key,value) in data.specName">
    <span>{{value}}</span>
    <span>{{data.year[key]}}</span>         
</div>

JS:

$scope.data={
    code: 'code',
    specName: {
        0: 'First',
        1: 'Second',
        2: 'Third'
    },
    year: {
        0: '2011',
        1: '2012',
        2: '2013'
    }
};
于 2013-09-24T12:24:25.167 回答
2

如果您能够像这样重组数据:

$scope.data = {
  code: 'code',
  specs: [
     {name: 'First', year:2011 },
     {name: 'Second', year:2012 },
     {name: 'Third', year:2013 }
  ]
};

因此,您将能够非常轻松地显示它:

 <table>
     <tr ng-repeat="spec in data.specs">
        <td>{{spec.name}}</td>
        <td>{{spec.year}}</td>  
      </tr>
 </table>

工作示例:http ://plnkr.co/edit/Ka8jM8?p=preview

于 2013-09-24T12:23:24.867 回答