是否有可能在角度2模板中有许多ngIF的情况

时间:2016-09-27 13:43:57

标签: angular typescript angular2-template

我有一个像这样的月份数列表:

months = ['1','2','3'...etc]

我在模板中搜索数组:

<table  *ngFor="let month of allMonthChannel"  >
        <months *ngIf =" something "></months> 
</table>

问题是当月份值仅为3,6,9,12时,我如何显示我的月份组件。我应该把它放在什么地方&#34;什么&#34; ? 感谢我的英语答案和sory:)

1 个答案:

答案 0 :(得分:3)

一个非常简单的解决方案可能是使用modulo,授予你真的需要第3,6,9和12个月:

<table  *ngFor="let month of allMonthChannel"  >
    <months *ngIf="month % 3 == 0"></months> 
</table>
  

Plunker了解工作示例