我正在尝试在 Angular 2 中使用 ngFor,示例代码如下
<a *ngFor="#facet of facet_data" class="collection-item" (click)="setToSearchBarWithFilter(facet.category)">
{{facet.category}}<span class="badge">{{facet.count}}</span>
</a>
我想在锚标签中应用 *ngIf 以仅显示 facet.count > 0 的标签,如下所示:
<a *ngFor="#facet of facet_data" class="collection-item" (click)="setToSearchBarWithFilter(facet.category)" *ngIf="facet.count > 0">
{{facet.category}}<span class="badge">{{facet.count}}</span>
</a>
但是 facet 在锚标签中不可用,它只在<a>
标签内的模板中可用,我怎样才能实现相同,有什么解决方案。