使用ng-content使用父渲染项时,不会填充@ContentChildren

Vla*_*iev 6 angular

我有三个组件:Panel,PanelGroup(ul)和PanelItem(li):

面板:

@Component({
selector: "panel",
directives: [PanelGroup,PanelItem],
template: `
  <panel-group>
    <ng-content select="panel-item"></ng-content>
  </panel-group>
`})

export default class Panel {}
Run Code Online (Sandbox Code Playgroud)

panelGroup中:

@Component({
selector: "panel-group",
directives: [forwardRef(() => PanelItem)],
template: `
  <ul>
    <ng-content></ng-content>
  </ul>`
})

export default class PanelGroup {
  @ContentChildren(forwardRef(() => PanelItem)) items;

  //I need to access children here and modify them eventually:
  ngAfterContentInit() {
    console.log(this.items.toArray()); //the array is always empty
  }
}
Run Code Online (Sandbox Code Playgroud)

PanelItem:

@Component({
selector: "panel-item",
directives: [forwardRef(() => PanelGroup)],
template: `
  <li>
    <span (click)="onClick()">
        {{title}}
    </span>
    <panel-group>
        <ng-content select="panel-item"></ng-content>
    </panel-group>
  </li>`
})

export default class PanelItem {
  @Input() title = 'SomeTitle';
}
Run Code Online (Sandbox Code Playgroud)

如上例所示,我尝试在PanelGroup组件中获取内容子项,但集合始终为空.还尝试将选择器添加到其中的"ng-content" - 在这种情况下,子节点永远不会被渲染,这有点奇怪.

我错过了什么吗?

这是插件:

Gün*_*uer 9

用途descendants: true:

@ContentChildren(forwardRef(() => PanelItem), {descendants: true}) items;
Run Code Online (Sandbox Code Playgroud)

另请参见angular 2/typescript:获取模板中的元素

  • 嗯,这救了我的培根 (2认同)