let error = console.error;
error = (func => {
return (...args) =>{
// TODO:这里你可以放处理bug的方法
// 一般上线小程序或者app以后,用于收集客户端错误
handlerFunction(args);
//让error继续执行
func.apply(console,args);
}
})(error);
function handlerFunction(err) {
console.log(err);
}
在main.js最开始的地方调用
0 个评论
要回复文章请先登录或注册