-1

我在 Angular 2 应用程序中有一个从“ngx-toastr”导入的 ToastrService 问题是我在那里显示的文本不适合,它被剪掉了。

我可以在某个地方扩展它吗?

例如,我可以在 toastrConfig 中设置一些参数:

const toastrConfig: Partial<IndividualConfig> = {
                            timeOut: 20000,
                            extendedTimeOut: 20000
                          }; 
this.toastr.warning(message, null, toastrConfig);

但是我没有找到IndividualConfig关于弹出窗口应该有多宽/窄的任何设置。

4

1 回答 1

0

实际上,toastr 会根据需要进行扩展。问题是消息中有一个“<”,toastr 将其视为 html 标记的开头。该死。

于 2019-12-13T14:00:47.057 回答