gpt4 book ai didi

Angular 5 ngx-toastr 不显示 html 消息

转载 作者:行者123 更新时间:2023-12-03 19:45:54 25 4
gpt4 key购买 nike

我正在使用 Angular 5 和 ngx-toastr .我使用了以下代码来呈现 HTML 标记以及如下消息:Hi<b>Hello</b>这是意料之中的。

this.toastr.warning("Hi<b>Hello</b>");

另外,我使用了下面的代码,它既没有控制台错误也没有任何输出(弹出窗口):
this.toastr.show("<font color=\"red\">Hi<b>Hello</b></red></font>",null,{
disableTimeOut: true,
tapToDismiss: false,
closeButton: true,
positionClass:'bottom-left',
enableHtml:true
});

如何在 ngx-toastr 中启用 HTML,以便消息看起来像:
您好 您好

最佳答案

更改您的配置如下,因为参数的顺序很重要,

this.toastr.show('<font color=\"red\">Hi<b>Hello</b></red></font>"',
'title' , {
enableHtml: true,
closeButton: true,
timeOut: 10000
});

STACKBLITZ DEMO

关于Angular 5 ngx-toastr 不显示 html 消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53077782/

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