Render content between the component tags

自古美人都是妖i 提交于 2019-12-17 09:18:14

问题


When a component is rendered, content inside it is ignored, for example:

import { Component } from '@angular/core';
@Component({
  selector: 'app-root',
  template: '<div>{{title}}</div>',
})
export class AppComponent {
  title = 'app works!';
}

Using it like:

<app-root>Ignored content</app-root>

Renders:

<div>app works!</div>

But looking at PrimeNg dialog, they use components like this:

<p-dialog [(visible)]="display">
    <p-header>
        Header content here
    </p-header>
    Content
    <p-footer>
        Footer content here
   </p-footer>
</p-dialog>

As Header content here, Content and Footer content here are inside the component, why are not they getting ignored and how can I achieve this?


回答1:


Add <ng-content></ng-content> to the component's template where the content should be projected:

@Component({
  selector: 'app-root',
  template: '<div>{{title}}</div>
             <br>
             <ng-content></ng-content>',
})
export class AppComponent {
  title = 'app works!';
}

Content to be projected:

<app-root>This is projected content!</app-root>

The output will be:

app works!
This is projected content!

Here is a great article about Angular Content Projection (Angular 1 Transclusion): Transclusion in Angular 2 with ng-content



来源:https://stackoverflow.com/questions/42355236/render-content-between-the-component-tags

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!