ngx-toastr ToastrService.show() 类型参数 Angular 2 +
ngx-toastr ToastrService.show() type parameter Angular 2 +
我可以毫无问题地使用ToastrService.success/error/warning/info()
,
但是当我使用 ToastrService.show()
时,我不知道应该发送哪种正确的字符串类型
我尝试发送这样的枚举:
export enum ToastType {
Success = 'success',
Error = 'error',
Info = 'info',
Warning = 'warning'
}
但是组件失去了样式。
我是这样使用ToasterService的,
this._toasterService.openToast("", "update success!", "success");
this._toasterService.openToast("", "update error!", "error");
遇到了同样的问题并在文档中找到了类型:
iconClasses = {
error: 'toast-error',
info: 'toast-info',
success: 'toast-success',
warning: 'toast-warning'
};
来源:
https://github.com/scttcper/ngx-toastr#iconclasses-defaults
更新
show() 方法有四个参数,其中类型是上面列出的名称。
ToastrService.show(message?: string, title?: string, override?: Partial<IndividualConfig>, type?: string)
可以在这里看到一个包含所有参数的示例:
https://stackblitz.com/edit/angular-uu7r6s
或者更完整的例子:
https://github.com/grabowskidaniel/exemplo-ngx-toastr
使用 NgxToastr 版本 10
我可以毫无问题地使用ToastrService.success/error/warning/info()
,
但是当我使用 ToastrService.show()
时,我不知道应该发送哪种正确的字符串类型
我尝试发送这样的枚举:
export enum ToastType {
Success = 'success',
Error = 'error',
Info = 'info',
Warning = 'warning'
}
但是组件失去了样式。
我是这样使用ToasterService的,
this._toasterService.openToast("", "update success!", "success");
this._toasterService.openToast("", "update error!", "error");
遇到了同样的问题并在文档中找到了类型:
iconClasses = {
error: 'toast-error',
info: 'toast-info',
success: 'toast-success',
warning: 'toast-warning'
};
来源: https://github.com/scttcper/ngx-toastr#iconclasses-defaults
更新
show() 方法有四个参数,其中类型是上面列出的名称。
ToastrService.show(message?: string, title?: string, override?: Partial<IndividualConfig>, type?: string)
可以在这里看到一个包含所有参数的示例: https://stackblitz.com/edit/angular-uu7r6s
或者更完整的例子: https://github.com/grabowskidaniel/exemplo-ngx-toastr
使用 NgxToastr 版本 10