我们如何在 nz-carousel 中使用 goTo(slidenumber)?如果我想直接转到特定的幻灯片编号

How we can use goTo(slidenumber) in nz-carousel? If I wanted to go at specific slide number directly

请找ng-zorro link参考。 https://ng.ant.design/components/carousel/en#header

使用ViewChild获取组件实例并使用实例方法。

  index = 0;

  @ViewChild(NzCarouselComponent, { static: false }) myCarousel: NzCarouselComponent;

  goTo() {
    this.myCarousel.goTo(Number(this.index));
  }

https://stackblitz.com/edit/angular-6rsuzz?file=src/app/app.component.ts