antdmessage使用_关于vue\react使用element\antd整合message消息提示

本文介绍了如何在开发中整理和优化页面请求后的多条信息提示,以Element UI为例,创建msgStore.js文件管理错误消息,统一展示并控制消息窗口的显示,提高用户体验。
摘要由CSDN通过智能技术生成

当在开发过程中进入页面请求多个接口,多条信息吐丝的现象

QQ截图20200827205943.png

感觉就是很不得劲儿,眼花撩乱的!

以element-ui做示范

建一个msgStore.js文件

import { Message } from "element-ui";

class StorageApi {

static errorList = []; // 获取所有的消息 进行存储

static Iserr = false; // 状态判断显示消息窗口

// 消息处理

static setErrorMessage(statusName, contentMsg) {

let _this = this;

if (!_this.errorList[statusName]) {

_this.errorList[statusName] = new Array();

}

_this.errorList[statusName].push(contentMsg);

setTimeout(function() {

let error= SessionStorageApi.getErrorMessage();

if (error) {

if (!_this.Iserr) {

_this.Iserr = true;

Message({

dangerouslyUseHTMLString: true,

message: error,

type: "error",

duration: 5 * 1000,

onClose: (instance: any) => {

_this.Iserr = false;

SessionStorageApi.removeErrorMessage();

},

});

}

}

}, 1000);

}

// 进行样式排版

static getErrorMessage() {

if (this.errorList && Object.keys(this.errorList).length > 0) {

let contentMsg = "";

for (let i in this.errorList) {

if (i == "500") {

for (let e of this.errorList[i]) {

contentMsg += e + "
";

}

} else if (i == "404") {

contentMsg = this.errorList[i][0] + "
";

} else {

contentMsg += this.errorList[i][0] + "
";

}

}

return contentMsg;

}

}

static removeErrorMessage() {

this.errorList = [];

}

}

export default StorageApi;

在需要进行message的地方进行引入

import StorageApi from "@/api/StorageApi.ts";

// 需要做提示信息的地方

StorageApi.setErrorMessage(

"error",

"服务器没返回,请与管理员联系"

);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值