介绍

错误提示组件就是图中这个东西
image.png

使用方法

  1. 构造函数注入Store

image.png

  1. this.store.dispatch(new ActionNotificationShow({message: ‘your_msg’, type: ‘error’}));

image.png
对象ActionNotificationShow的构造函数接受参数是NotificationMessage类,如图所示:
image.png
NotificationMessage主要就是message(要提示的信息内容),type(提示类型,支持四种: [‘info’ | ‘warn’ | ‘success’ | ‘error’] )
还可以定义显示的
水平位置horizontalPosition [‘start’ | ‘center’ | ‘end’ | ‘left’ | ‘right’]
和垂直位置verticalPosition [‘top’ | ‘bottom’]
image.png