markdown 角度 - 将组件传递到组件中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 角度 - 将组件传递到组件中相关的知识,希望对你有一定的参考价值。

# Angular - Pass Component into Component

[SOURCE](https://stackoverflow.com/a/51172183/1602807)

Use `ng-content` (not `ng-template`) to pass component into component:

```html
<!-- component A -->
<div>
  ....
  <ng-content></ng-content>
</div>


<!-- Pass component B into component A like this -->
<app-component-a>
  <app-component-b></app-component-b>
</app-component-a>
```

以上是关于markdown 角度 - 将组件传递到组件中的主要内容,如果未能解决你的问题,请参考以下文章

将数组从一个组件传递到另一个组件的角度

在没有导航或路由的角度 2 类型脚本中,将数据一个组件传递到另一个组件的所有可能性是啥?

以角度 8 将文本字段的值从一个组件传递到另一个组件

如何将一些字符串或数据从 API 传递到角度 6 中的角度组件?

如何将类成员变量传递给另一个组件角度?

如何在角度 4 中使用 ng-bootstrap 将数据模态组件传递给父组件