迭代一个数组* ngFor Angular 2

时间:2017-07-14 13:57:40

标签: arrays angular templates iteration ngfor

早上好,我遇到了问题,或者没有必要的迭代问题,例如我从json文档中获取了下一个值,之后我转换了数组中的所有数据,但是我不能迭代它的所有项目数组包含,有人可以帮我这样做。 此代码显示数组的数据:

[
  0: {         
     info: [
        0: {
            //data here
        },
        1: { 
            //data here
        },
        length: 2
     ],         
  },
  length: 1

我试过

    <table>
 <thead>
    <tr>
      <th>
         <!--th>title here<th-->
      </th>
    </tr>
  </thead>
<tbody>             
  <ng-template ngFor let-item [ngForOf]="data" let-i="index" >                    
     <tr
         <td>
             `{{  item.info[i].dataItem }}` <!--th>example<th-->
         </td>
       </tr>
     </ng-template>
   </tbody>
</table>

或仅限*ngFor="let item of data"

但它始终只显示第一个位置的所有数据,我是角度新手,我不知道如何递增 i 值来迭代所有元素。

由于

0 个答案:

没有答案