使用<ng-content>访问父级中的子级数据

时间:2019-09-20 11:59:51

标签: angular

我正在尝试在父级的子级中包含一些模板,但是我需要访问转录中的子级属性。 有什么办法吗?

子组件:-

<ul>
  <li *ngFor="let item of companies">
    {{item.name}} <ng-content></ng-content>
  </li>
</ul>

父项:-

<app-child [companies]="companies">
  <a href="">
    Visit {{item}}
  </a>
</app-child>

我需要在此处的父组件中添加“物品”。

Stackblitz https://stackblitz.com/edit/angular-fj94ej

0 个答案:

没有答案