我在ng-zorro版本8.2.1中使用angular 8。
我有一个 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”
答案 0 :(得分:0)
不幸的是,我找不到解决该问题的任何解决方案,所以我想出了以下解决方法:
使用 [attr.boxid] =“ box._id”
将数据存储在html中<nz-card *ngFor="let box of boxes" nzTitle="{{box.title}}"
[nzActions]="[boxActionLearn, boxActionEdit, boxActionDetails, boxActionDelete]" class="box" [attr.boxid]="box._id">
<p>{{box.description}}</p>
使用(click)=“ actionDetails($ event)”
单击操作时,使用事件处理程序调用通用函数<ng-template #boxActionDetails>
<i nz-icon nzType="unordered-list" (click)="actionDetails($event)"></i>
</ng-template>
在操作中,通过偶数目标迭代直到包含数据的父对象,并用于进一步处理。
actionDetails(event) {
var target = event.target || event.srcElement || event.currentTarget;
var boxid = target.parentNode.parentNode.parentNode.parentNode.parentNode.attributes.boxid.nodeValue;
}
答案 1 :(得分:0)
您可以在循环主体中声明ng-template
,如下所示:
<nz-card *ngFor="let item of [true, true, true]; index as i"
nzTitle="Card title"
[nzActions]="[action]">
<p>Card content</p>
<p>Card content</p>
<p>Card content</p>
<ng-template #action>
<button nz-button>{{i}}</button>
</ng-template>
</nz-card>