js override console.log if not defined

后端 未结 7 709
庸人自扰
庸人自扰 2020-12-05 04:41

Which solution do you recommend, the second is simpler ( less code ), but there are drawbacks on using it ?

First: (Set a global debug flag)

相关标签:
7条回答
  • 2020-12-05 05:11

    I've faced a similar bug in my past, and I overcame it with the code below:

    if(!window.console) {
        var console = {
            log : function(){},
            warn : function(){},
            error : function(){},
            time : function(){},
            timeEnd : function(){}
        }
    }
    
    0 讨论(0)
  • 2020-12-05 05:13
    window.console = window.console || {};
    window.console.log = window.console.log || function() {};
    
    0 讨论(0)
  • 2020-12-05 05:16

    Neither, but a variation of the second. Lose the try...catch and check for existence of the console object properly:

    if (typeof console == "undefined") {
        window.console = {
            log: function () {}
        };
    }
    
    console.log("whatever");
    
    0 讨论(0)
  • 2020-12-05 05:24

    Or, in coffeescript:

    window.console ?=
        log:-> #patch so console.log() never causes error even in IE.
    
    0 讨论(0)
  • 2020-12-05 05:29

    EDIT: Andy's answer is way more elegant than the quick hack I've posted below.

    I generally use this approach...

    // prevent console errors on browsers without firebug
    if (!window.console) {
        window.console = {};
        window.console.log = function(){};
    }
    
    0 讨论(0)
  • 2020-12-05 05:31

    I came across this post, which is similar to the other answers:

    http://jennyandlih.com/resolved-logging-firebug-console-breaks-ie

    0 讨论(0)
提交回复
热议问题