我在组件中有一个Observable Input变量,它从其父组件接收它的值。 如何获得该值内的项目数?
<tr *ngFor="let currentRow of rows | async">
</tr>
<tr>
<td>empty message to be displayed if there are no items in the table</td>
</tr>
Code in component
@Input() rows: Observable<IDataFlow[]>;
答案 0 :(得分:1)
您可以使用
(rows | async).length
获取可观察
传递的数组的长度