当我在组件中使用数组时,如何询问角度2中数组的大小,例如:
users : User[];
带
export class User {
id : number;
firstName : String;
lastName : String;
userName : String
}
和
<tbody>
<tr *ngFor="let user of users">
<th scope="row">{{ user.id }}</th>
<td>{{ user.firstName }}</td>
<td>{{ user.lastName }}</td>
<td>{{ user.userName }}</td>
</tr>
</tbody>
要求在* ngIf表达式内的数组上使用插值来检测大小与空的大小不同的方法应该是什么?
答案 0 :(得分:2)
<tbody *ngIf="users.length">
<tr *ngFor="let user of users">
<th scope="row">{{ user.id }}</th>
<td>{{ user.firstName }}</td>
<td>{{ user.lastName }}</td>
<td>{{ user.userName }}</td>
</tr>
</tbody>