gpt4 book ai didi

angular - 有什么方法可以不在 Angular 2 或更高版本的 html 上显示组件名称?

转载 作者:太空狗 更新时间:2023-10-29 17:39:05 24 4
gpt4 key购买 nike

这个组件...

<my-component>
<p>Hello !</p>
</my-component>

...在 html 模板中...

<div class="myClass">
<my-component></mycomponent>
</div>

...将在客户端呈现类似这样的内容:

<div class="myClass">
<my-component>
<p>Hello !</b>
</mycomponent>
</div>

有什么方法可以不显示组件的html标签,而是显示组件的内部内容吗?像...

<div class="myClass">
<p>Hello !</b>
</div>

最佳答案

既然你有一个选择器,你可以尝试做

<div class="myClass">
<div my-component></div>
</div>

否则,根据this page

Directives that replace their host element (replace: true directives in Angular 1) are not supported in Angular 2. In many cases these directives can be upgraded over to regular component directives.

关于angular - 有什么方法可以不在 Angular 2 或更高版本的 html 上显示组件名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48111673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com