ฉันเขียนสิ่งนี้:
//Make a copy of the old console.
var oldConsole = Object.assign({}, console);
//This function redefine the caller with the original one. (well, at least i expect this to work in chrome, not tested in others)
function setEnabled(bool) {
if (bool) {
//Rewrites the disable function with the original one.
console[this.name] = oldConsole[this.name];
//Make sure the setEnable will be callable from original one.
console[this.name].setEnabled = setEnabled;
} else {
//Rewrites the original.
var fn = function () {/*function disabled, to enable call console.fn.setEnabled(true)*/};
//Defines the name, to remember.
Object.defineProperty(fn, "name", {value: this.name});
//replace the original with the empty one.
console[this.name] = fn;
//set the enable function
console[this.name].setEnabled = setEnabled
}
}
น่าเสียดายที่มันใช้งานไม่ได้กับโหมดเข้มงวด
ดังนั้นการใช้console.fn.setEnabled = setEnabled
แล้วconsole.fn.setEnabled(false)
ที่fn
อาจจะเกือบทุกฟังก์ชั่นคอนโซล สำหรับกรณีของคุณจะเป็น:
console.log.setEnabled = setEnabled;
console.log.setEnabled(false);
ฉันเขียนสิ่งนี้ด้วย:
var FLAGS = {};
FLAGS.DEBUG = true;
FLAGS.INFO = false;
FLAGS.LOG = false;
//Adding dir, table, or other would put the setEnabled on the respective console functions.
function makeThemSwitchable(opt) {
var keysArr = Object.keys(opt);
//its better use this type of for.
for (var x = 0; x < keysArr.length; x++) {
var key = keysArr[x];
var lowerKey = key.toLowerCase();
//Only if the key exists
if (console[lowerKey]) {
//define the function
console[lowerKey].setEnabled = setEnabled;
//Make it enabled/disabled by key.
console[lowerKey].setEnabled(opt[key]);
}
}
}
//Put the set enabled function on the original console using the defined flags and set them.
makeThemSwitchable(FLAGS);
ดังนั้นคุณเพียงแค่ต้องใส่FLAGS
ค่าเริ่มต้น (ก่อนที่จะรันโค้ดด้านบน) เช่นFLAGS.LOG = false
และฟังก์ชั่นการบันทึกจะถูกปิดการใช้งานโดยค่าเริ่มต้นและยังคงคุณสามารถเปิดใช้งานมันโทรconsole.log.setEnabled(true)