Angular2子组件作为数据

时间:2016-04-20 21:49:22

标签: angular

假设我有两个组成部分:parentchild。 HTML将如下所示:

<parent title="Welcome">
    <child name="Chris">Blue Team</child>
    <child name="Tom">Red Team</child>
</parent>

最终输出如下:

<h1>Welcome</h2>
<ul>
    <li><b>Chris</b> is on the Blue Team</li>
    <li><b>Tom</b> is on the Red Team</li>
</ul>

父组件:

@Component({
  selector: 'parent',
  directives: [ChildComponent], // needed?
  template: `
    <h1>{{title}}</h1>
    <ul>
       <li *ngFor="#child of children()">{{child.content}}<li>
    </ul>`
})
export class ParentComponent {

    @Input() title;

    children() {
        // how?
    }

}

如何从父级中访问子组件并获取其内容?

另外,我不希望自动渲染孩子。根据某些条件,我可能会选择不向某些孩子展示。

感谢。

2 个答案:

答案 0 :(得分:12)

<强> <ng-content>

要将内容投影到元素(包含),您需要<ng-content>元素,如

@Component({
  selector: 'parent',
  directives: [ChildComponent], // needed?
  template: `
    <h1>{{title}}</h1>
    <ul>
       <li *ngFor="letchild of children()">
         <ng-content></ng-content>
       </li>
    </ul>`
})

<强> <ng-content select="xxx">

但这不适用于您的用例,因为<ng-content>不会生成内容,它只会投影它(作为一个放置在子组件模板中显示子项的放置器。

即使*ngFor会生成3个<ng-content>元素,但子元素只会在第一个<ng-content>元素中显示一次。

<ng-content>允许使用

等选择器
<ng-content select="[name=Chris]"></ng-content>

其中的模板如

<ul>
   <li>
     <ng-content select="[name=Chris]"></ng-content>
   </li>
</ul>`

会导致

<h1>Welcome</h2>
<ul>
    <li><b>Chris</b> is on the Blue Team</li>
</ul>

Binding events when using a ngForTemplate in Angular 2(来自@kemsky的评论)

中解释了一种更灵活,更强大的方法

<template>@ViewChildren()*ngForTemplate

如果您将孩子包裹在<template>标签中,则可以使用@ContentChildren()访问这些标签,然后使用*ngFor*ngForTemplate进行插入。

我在内部*ngFor使用了一点点黑客。有一种更好的方法正在进行中(ngTemplateOutlet https://github.com/angular/angular/pull/8021已合并)

@Component({
  selector: 'parent',
  template: `
    <h1>{{title}}</h1>
    <ul>
      <li *ngFor="let child of templates">
         <!-- with [child] we make the single element work with 
              *ngFor because it only works with arrays -->
         <span *ngFor="let t of [child]" *ngForTemplate="child"></span>
      </li>
    </ul>
    <div>children:{{children}}</div>
    <div>templates:{{templates}}</div>
    `
})
export class ParentComponent {

  @Input() title;
  @ContentChildren(TemplateRef) templates;
}

@Component({
    selector: 'my-app',
    directives: [ParentComponent],
    template: `
    <h1>Hello</h1>
<parent title="Welcome">
  <template><child name="Chris">Blue Team</child></template>
  <template><child name="Tom">Red Team</child></template>
</parent>    
    `,
})
export class AppComponent {}

Plunker example

另请参阅How to repeat a piece of HTML multiple times without ngFor and without another @Component了解更多ngTemplateOutlet Plunker示例。

更新Angular 5

ngOutletContext已重命名为ngTemplateOutletContext

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

答案 1 :(得分:-3)

也许你正在寻找这个? https://angular.io/docs/ts/latest/cookbook/component-communication.html#!#parent-to-child-local-var

您可以将本地var分配给父视图中的任何子项

<child #child1></child>
<child #child2></child>
<button (click)="child1.doSomething()">Trigger child1</button>