我试图将已包含的内容绑定到组件循环内的变量,但我无法这样做。
我查看了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>
我想要达到的目标的简单说明:
答案 0 :(得分:11)
更新Angular 6
ngOutletContext
已重命名为ngTemplateOutletContext
template
应为ng-template
另见https://github.com/angular/angular/blob/master/CHANGELOG.md#500-beta5-2017-08-29
<强>原始强>
您可以获取模板参考并使用例如ngTemplateOutlet
或ngForTemplate
添加模板参考,以获取添加到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>
(但尚未验证)
另见