使用Resig的Simple JavaScript Inhertiance时,让类名显示在控制台中

时间:2011-10-26 14:41:22

标签: javascript inheritance prototypal-inheritance resig

我正在使用Resig的Simple JavaScript Inheritance来创建我的课程。到目前为止,我唯一不喜欢的是,当我将使用此库创建的对象记录到控制台时,它的名称只是“类”。我的问题是是否有办法修改他的代码,以便我在控制台中获取实际的类名。以下是Chrome控制台的示例:

enter image description here

我真的希望这个名称“Class”成为我创建的类的实际名称,就像你执行以下操作一样:

enter image description here

我相信我知道这与Resig的库发生的原因:实际的构造函数简称为“Class”。这是他的图书馆的代码:

(function(){
  var initializing = false,
    // Determine if functions can be serialized
    fnTest = /xyz/.test(function(){xyz;}) ? /\b_super\b/ : /.*/;

  // Create a new Class that inherits from this class
  Object.subClass = function(prop) {
    var _super = this.prototype;

    // Instantiate a base class (but only create the instance,
    // don't run the init constructor)
    initializing = true;
    var proto = new this();
    initializing = false;

    // Copy the properties over onto the new prototype
    for (var name in prop) {
      // Check if we're overwriting an existing function
      proto[name] = typeof prop[name] == "function" &&
        typeof _super[name] == "function" && fnTest.test(prop[name]) ?
        (function(name, fn){
          return function() {
            var tmp = this._super;

            // Add a new ._super() method that is the same method
            // but on the super-class
            this._super = _super[name];

            // The method only need to be bound temporarily, so we
            // remove it when we're done executing
            var ret = fn.apply(this, arguments);       
            this._super = tmp;

            return ret;
          };
        })(name, prop[name]) :
        prop[name];
    }

    // The dummy class constructor
    function Class() {
      // All construction is actually done in the init method
      if ( !initializing && this.init )
        this.init.apply(this, arguments);
    }

    // Populate our constructed prototype object
    Class.prototype = proto;

    // Enforce the constructor to be what we expect
    Class.constructor = Class;

    // And make this class extendable
    Class.subClass = arguments.callee;

    return Class;
  };
})();

你会发现Class()功能大概是下降的2/3。有谁知道如何修改这段代码,以便在控制台中获得该类的实际名称?

1 个答案:

答案 0 :(得分:3)

当您创建Person.prototype.constructor时,更改为Person

var Person = (function() {
  var myConstructor = Class.extend({
    init: function(isDancing){
      this.dancing = isDancing;
    },
    dance: function(){
      return this.dancing;
    }
  });
  myConstructor.prototype.constructor = function Person(){};
  return myConstructor;
}());

我认为你不能在Simple JavaScript Inheritance内做到这一点。您需要将Person.prototype.constructor作为一个命名函数,我不认为您可以在没有eval的情况下命名函数...而且您有太多的代表要我解释为什么你不应该这样做;)


没有任何承诺,这并没有在其他地方搞砸了:P