容器component.ts
export class ContainerComponent{
innerComponentRef; //We have this
innerComponentSelector;//We have this
}
但是在container-component.html中,我不知道如何使用innerComponent标记追加html。字符串插值 - 无法确定。我也想知道我想做的不是一种不好的做法。
答案 0 :(得分:-1)
如果您在NgModule中的declarations: []
内注册组件,则可以在container-component.html中执行以下操作:
<div>
<innerComponentRef></innerComponentRef>
<innerComponentSelector></innerComponentSelector>
</div>
更改innerComponentRef
名称的innerComponentSelector
和selector: ""