2

有一个对象c
它有一个功能c.log(message)

是否可以添加一些变量来使用它们c.log.debug = true

4

3 回答 3

4

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();
于 2013-02-09T13:11:17.167 回答
2

只需稍加修改,就可以像这样:

var o = {f: function() { console.log('f', this.f.prop1) }};

o.f.prop1 = 2;

o.f(); // f 2
o.f.prop1; // 2
于 2013-02-09T13:09:41.187 回答
0

它不会像这样工作。您可以改为将“调试”标志作为参数添加到您的函数中,例如

c.log = function(message, debug) {
  if debug {
    // do debug stuff
  }
  else {
   // do other stuff
  }

}
于 2013-02-09T13:05:07.633 回答