4

我正在尝试开发一个轮播。

期望的最终结果应该是开发人员只需将整个标记写在一个地方(比如说 in app.component.html),只有一个options属性,然后轮播将接管。

问题是carousel.component我需要设置一些属性carousel-item.component(属性app.component应该与......但所有标记都在app.component.html)。

我怎样才能做到这一点?

app.component.html:

<carousel [options]="myOptions">
    <carousel-item *ngFor="let item of items">
        <img [src]="item.image" alt="" />
    </carousel-item>
</carousel>

<hr />

<carousel [options]="myOptions2">
    <carousel-item *ngFor="let item of items">
        <img [src]="item.image" alt="" />
    </carousel-item>
</carousel>

carousel.component.html:

<div class="carousel-stage">
    <ng-content></ng-content>
</div>

carousel-item.component.html:

<ng-content></ng-content>
4

1 回答 1

4

我认为唯一的解决方案是@ContentChildren()

在我的carousel.component.ts

import { ContentChildren, ... } from '@angular/core';

// ...

export class CarouselComponent implements AfterContentInit {
  @ContentChildren(ItemComponent) carouselItems;

  ngAfterContentInit() {
    this.carouselItems.forEach((item: ItemComponent, currentIndex) => {
      // Do stuff with each item
      // Even call item's methods:
      item.setWidth(someComputedWidth);
      item.setClass(someClass);
    }
  }
}

然后,在carousel-item.component.ts

export class ItemComponent implements OnInit, OnDestroy {
  @HostBinding('style.width') itemWidth;
  @HostBinding('class') itemClass;
  @HostBinding('@fade') fadeAnimationState;


  setWidth(width) {
    this.itemWidth = width + 'px';
  }
  setClass(class) {
    this.itemClass = class;
  }
  setAnimationState(state) {
    this.fadeAnimationState = state;
  }
}

显然,我什至可以使用@HostBinding绑定动画触发器。我假设 @HostBingind() 被设计为仅适用于标准 html 属性(样式、类等),但似乎我实际上可以绑定任何东西(字面意思是任何东西)。

有人有更好的解决方案吗?在我接受我自己的答案之前...

于 2017-06-04T22:12:13.023 回答