我使用 Angular 8 和 ng-zorro 版本 8.2.1。
我有一张nz 卡,请参阅https://ng.ant.design/components/card/en由*ngFor重复。对于这些操作,我需要访问*ngFor的属性,但事实证明我无法从模板中访问它。
<ng-template #boxActionDetails>
<p>{{box.id}}</p>
</ng-template>
<nz-card *ngFor="let box of boxes" nzTitle="{{box.title}}" [nzActions]="[boxActionDetails]">
<p>{{box.description}}</p>
</nz-card>
在执行上面的代码时,我得到以下js错误
TypeError:无法读取未定义的属性“id”