我想使用动态添加的多个IonicSlides。但我不能使用@viewChild
. 请提出解决此问题的方法。
模板.html:
<div *ngFor="let name of title;let i = index;">
<ion-slides id="something" #slides>
//some code
</ion-slides>
</div
组件.ts:
@ViewChild('slides') slides: QueryList<Slides>;
....
ngAfterViewInit(){
setTimeout(()=>{
alert(this.slides.toArray()); //this line rise error
}, 3000);
}
错误 :
_this.slides.toArray 不是函数