Angular2 @ContentChildren未在父<ng-content>中填充

时间:2017-04-25 03:15:28

标签: javascript angular angular2-components angular2-ngcontent

ISSUE:

@ContentChildren似乎不适用于父<ng-content>个容器。 即使内容是组件的子项。

Plunker:https://plnkr.co/edit/J5itJmDfwKwtBsG6IveP?p=preview

注意:我正在使用{descendants: true}

示例代码:

主要HTML:

<div>
  <child>
    <test></test>
    <test></test>
    <test></test>
  </child>
  <br><br>
  <parent>
    <test></test>
    <test></test>
    <test></test>
  </parent>
</div>

子组件:

<h2>Child</h2>
<parent>
  <ng-content></ng-content>
</parent>

父组件:

<h3>Parent</h3>
<ng-content></ng-content>
<div class='length'>Line count : {{length}}</div>

问题 子组件的test组件的长度为0,而父组件的长度为3。

详细代码:

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


@Directive({selector: 'test'})
export class Test {}

@Component({
  selector: 'parent',
  template: `
    <h3>Parent</h3>
    <ng-content></ng-content>
    <div class='length'>Line count : {{length}}</div>
  `
})
export class ParentComponent  {

  @ContentChildren(Test, {descendants: true}) private tests : QueryList<Test>;

  constructor() { }

  get length () {
    return this.tests.length;
  }
}
import {
  Component
} from '@angular/core';


@Component({
  selector: 'child',
  template: `
  <h2>Child</h2>
  <parent>
    <ng-content></ng-content>
  </parent>
  `
})
export class ChildComponent  {

  constructor() { }

}

enter image description here

1 个答案:

答案 0 :(得分:2)

ContentChildren将只计算分配给current Component的指令。根据您的情况,在将test指令分配给ChildComponent时,您应该在ChildComponent本身计算指令。

请参阅此plunker我从你那里分发。