如何在 Angular 2 中扩展 toastr 东西?
How to expand toastr thing in Angular 2?
我的 Angular 2 应用程序中有一个从 'ngx-toastr' 导入的 ToastrService。问题是我在那里显示的文本不适合,它被剪切了。
我可以在某个地方扩展它吗?
例如,我可以在 toastrConfig 中设置一些参数:
const toastrConfig: Partial<IndividualConfig> = {
timeOut: 20000,
extendedTimeOut: 20000
};
this.toastr.warning(message, null, toastrConfig);
但是我在 IndividualConfig
中没有找到任何关于 wide/narrow 应该如何弹出的设置。
实际上,toastr 会根据需要扩展。问题是消息中有一个“<”,toastr 将其视为 html 标记的开头。妈的
我的 Angular 2 应用程序中有一个从 'ngx-toastr' 导入的 ToastrService。问题是我在那里显示的文本不适合,它被剪切了。
我可以在某个地方扩展它吗?
例如,我可以在 toastrConfig 中设置一些参数:
const toastrConfig: Partial<IndividualConfig> = {
timeOut: 20000,
extendedTimeOut: 20000
};
this.toastr.warning(message, null, toastrConfig);
但是我在 IndividualConfig
中没有找到任何关于 wide/narrow 应该如何弹出的设置。
实际上,toastr 会根据需要扩展。问题是消息中有一个“<”,toastr 将其视为 html 标记的开头。妈的