我的子组件看起来像:
...
@Component({
selector: '[child-component]'
templateUrl: './child.template.html'
})
...
和我的父模板,如:
<span child-component [someInput]="123"></span>
现在我想在没有<span>
容器的情况下渲染我的子组件的内容。我的父组件模板中根本不需要容器,只需要子组件模板的内容。
我已经尝试了其他一些标签。
<ng-content>
(根本没有渲染)<ng-template>
(嵌入式模板上的组件:)<ng-container>
(无法在 'Node' 上执行 'appendChild')
提前致谢!