介绍
使用方法
- 构造函数注入Store
- this.store.dispatch(new ActionNotificationShow({message: ‘your_msg’, type: ‘error’}));
对象ActionNotificationShow的构造函数接受参数是NotificationMessage类,如图所示:
NotificationMessage主要就是message
(要提示的信息内容),type
(提示类型,支持四种: [‘info’ | ‘warn’ | ‘success’ | ‘error’] )
还可以定义显示的
水平位置horizontalPosition
[‘start’ | ‘center’ | ‘end’ | ‘left’ | ‘right’]
和垂直位置verticalPosition
[‘top’ | ‘bottom’]