Angular 2

时间:2016-09-18 19:19:15

标签: javascript angularjs angular

我有一个组件<DropDown></DropDown>,我希望让用户传入DropDown中列表项的模板。

假设他们想制作一个包含图片和文字的自定义列表项,他们会做这样的事情:

<DropDown [data]="myData">
    <template>
        <span> <img src="..."> Some Text <span>
    </template>
</DropDown>

在我的DropDown组件的HTML中,我有:

<div>
    <ul>
        <DropDownList [data]="data">
        </DropDownList>
    </ul>
</div>

在DropDownList组件中,我有以下HTML:

<li *ngFor="let item of data
    (click)="handleOnSelect(item)">
    [class.selected]="selectedItems.includes(item)">

    <template [ngWrapper]="itemWrapper>
    </template>
</li>

(我正在使用此帖子中的模板包装器方法: Binding events when using a ngForTemplate in Angular 2

如果我在DropDown组件的HTML中包含li元素,则此方法有效。但是,我希望将li包装到DropDownList组件中,并将用户从DropDown提供的模板传递给DropDownList。

是否可以这样做?

1 个答案:

答案 0 :(得分:4)

您可以尝试以下解决方案:

@Component({
  selector: 'DropDownList',
  template: `
   <li *ngFor="let item of items" (click)="handleOnSelect(item)">
    <template [ngTemplateOutlet]="itemWrapper" [ngOutletContext]="{ $implicit: item }">
    </template>
   </li>`
})
export class DropDownListComponent {
  @Input() itemWrapper: TemplateRef<any>;
  @Input() items: any;
  handleOnSelect(item) {
   console.log('clicked');
  }
}

@Component({
  selector: 'DropDown',
  template: `
    <div>
      <ul>
          <DropDownList [items]="items" [itemWrapper]="itemWrapper">
          </DropDownList>
      </ul>
    </div>`
})
export class DropDownComponent {
  @Input() items: string[];
  @ContentChild(TemplateRef) itemWrapper: TemplateRef<any>;
} 

@Component({
  selector: 'my-app',
  template: `
     <DropDown [items]="items">
       <template let-item>
            <h1>item: {{item}}</h1>
       </template>
    </DropDown>
  `
})
export class App { 
   items = ['this','is','a','test'];
}

<强> Plunker Example

ngTemplateOutlet(^ 2.0.0-rc.2)指令与自定义指令NgWrapper具有相同的功能

另见相关问题: