1

我将 ngx-toaster 与disableTimeOuttrue 一起使用。所以它不会自动隐藏。但是现在我不会在用户离开页面时(在 ngOnDestroy 方法内)以编程方式隐藏它。我该怎么做?

this.toastr.error(message, status, {disableTimeOut: true});
4

2 回答 2

4

如果需要,您只需调用 .clear() 方法并传递 toastId

 this.toastr.clear(this.toastRef.toastId);

堆栈闪电战演示

于 2019-12-21T06:01:48.090 回答
3

使用清除()

this.toastr.clear()
于 2019-12-21T05:59:29.903 回答