有一个对象c
。
它有一个功能c.log(message)
是否可以添加一些变量来使用它们c.log.debug = true
?
Javascript 是一种完全面向对象的语言。这意味着几乎 一切都是对象——甚至函数:
var f = function(){};
alert(f instanceof Function);
// but this statement is also true
alert(f instanceof Object);
// so you could add/remove propreties on a function as on any other object :
f.foo = 'bar';
// and you still can call f, because f is still a function
f();
只需稍加修改,就可以像这样:
var o = {f: function() { console.log('f', this.f.prop1) }};
o.f.prop1 = 2;
o.f(); // f 2
o.f.prop1; // 2
它不会像这样工作。您可以改为将“调试”标志作为参数添加到您的函数中,例如
c.log = function(message, debug) {
if debug {
// do debug stuff
}
else {
// do other stuff
}
}