重写console.log()实现自己的逻辑

// console.log 重写
console.log = (function(oriLogFunc){
    return function(str,str1)
    {
        if(str1 == undefined){
            oriLogFunc.call(console,str);
        }else{
            mui.ajax('url', {
                data: {
                    content: str
                },
                dataType: 'json', //服务器返回json格式数据
                type: 'post', //HTTP请求类型
                timeout: 10000, //超时时间设置为10秒;
                headers: {
                    'Content-Type': 'application/x-www-form-urlencoded'
                },
                success: function(data) {},
                error: function(xhr, type, errorThrown) {
                    //异常处理;
                    console.log(type);
                }
            });
        oriLogFunc.call(console,str,str1);
        }
            
    }
})(console.log);

你可能感兴趣的:(重写console.log()实现自己的逻辑)