Angular 2将transcluded内容绑定到循环变量

时间:2016-12-20 10:09:37

标签: angular typescript

我试图将已包含的内容绑定到组件循环内的变量,但我无法这样做。

我查看了PrimeNG的dropdown组件,并使用template标记和let-car绑定到car变量循环。

然而,当我尝试这个时,我甚至无法将内容转换为内容。实现这一目标的正确方法是什么?

尝试:

<!-- Obviously not gonna work -->
<comp>
  <span>{{option.name}}, {{option.type}}</span>
</comp>

<!-- Thought this would work but it doesn't, in odd scenarios I get the last element of the loop to transclude content and bind correctly. -->
<comp>
  <template let-option>
    <span>{{option.name}}, {{option.type}}</span>
  </template>
</comp>

在组件中:

<ul>
  <li *ngFor="let option of options">
    <ng-content></ng-content>
  </li>
</ul>

我想要达到的目标的简单说明:

https://plnkr.co/edit/6SS03fuXmbvJB4nmf1AO?p=preview

1 个答案:

答案 0 :(得分:11)

更新Angular 6

ngOutletContext已重命名为ngTemplateOutletContext template应为ng-template

另见https://github.com/angular/angular/blob/master/CHANGELOG.md#500-beta5-2017-08-29

<强>原始

您可以获取模板参考并使用例如ngTemplateOutletngForTemplate添加模板参考,以获取添加到DOM的模板内容。使用ngTemplateOutlet,您可以提供自己的上下文,然后可以使用您尝试过的模板变量进行访问。

class CompComponent {
  context = {option: 'some option'};
  constructor(private templateRef:TemplateRef){}
}
<ng-template [ngTemplateOutlet]="templateRef" [ngOutletContext]="{$implicit: context}"></template>

我认为较新的版本需要

<ng-template [ngTemplateOutlet]="templateRef" [ngTemplateOutletContext]="{$implicit: context}"></template>

(但尚未验证)

另见