在工具库方法里重新封装错误提示方法,然后在封装的请求方法使用
let sigleInstanceFunc = function () {
let obj = null;
console.log(obj);
return (msg) => {
if (obj) return;
obj = message.error(msg)
let timer = null
timer = setTimeout(() => {
obj = null;
clearTimeout(timer)
}, 3000);
};
};
export let messageError = sigleInstanceFunc();