我想查看离子卡的元素参考,但看不到。下面是我的代码。
.html
<ion-content>
<ion-card *ngFor="let card of cards" #card>
</ion-card>
</ion-content>
.ts
//all imports are made
//class defined
@ViewChild("card", {read: ElementRef}) card: ElementRef;
constructor(private elementRef: ElementRef){}
ngAfterViewInit(): void {
console.log('card' -->, this.card); // in the console it displays undefined
}