我需要在 div 之间显示内部 html 和内容。我需要innerHTML 中的一条消息,即notification.message 和tag.button 之间的按钮内容对于所有动态消息都应该相同。这是关闭按钮。我需要动态更改消息并保持关闭按钮不变,而不是重复关闭按钮。请帮我这样做...
我想转换
<div [innterHTML]="message"><button></div> to
<div>message <button>X</button></div>
当我试图在下面的代码中进行转换时,我没有关闭按钮,只有内容被呈现。
<ng-container *ngFor="let notification of src.notifications">
<div class="elementToFadeInAndOut">
<div
class="notification is-toast"
style="margin-top: 10px; float:right;"
data-e2e="notifier-toast"
[innerHTML]="notification.message"
>
<button class="close" (click)="src.destroy(notification)" data-e2e="notifier-close">
<span class="icon">
<i class="fal fa-times fa-lg"></i>
</span>
</button>
</div>
</div>
</ng-container>