标签: angular
我想通过* ngFor显示一个数组,并在每个x元素中开始一个新行。
我怎样才能实现这一目标? 我正在尝试这样的事情。
<tr> <td *ngFor="let elements of myArray ; let index = index"> // if !(index % x) create a new row </td> </tr>