0

好吧,我是原型编程/设计的新手。我很乐意提供帮助。

问题是为什么我this.__proto__instances在“find”方法中的“”返回“undefined”?

如果我的方法是错误的,请原谅我,我很高兴知道调用类方法以在类变量数组中查找元素的正确方法,而无需为每个孩子定义方法。

详细问题在下面的代码中详细说明为注释。

谢谢你。

function Attribute(name,type){
    //some members definition, including uid, name, and type
};

Attribute.prototype.find=function(uid){
    var found_attr=false;
    this.__proto__.instances.forEach(function(attr){ 
        if (attr.uid == uid) found_attr=attr;           
    }); 
    return found_attr;
};

this.__proto__.instances.forEach(function(attr){ 以上是错误的行。日志说“不能为未定义的每个调用方法”

function ReferenceAttribute(arg_hash){
    Attribute.call(this,arg_hash.name,arg_hash.type); 
    //some members definition
    this.pushInstance(this); 
};

this.pushInstance(this);将此实例推送到正常工作的 ReferenceAttribute.prototype.instances

ReferenceAttribute.prototype=new Attribute(); 

ReferenceAttribute 通过原型链接方法继承 Attribute

ReferenceAttribute.prototype.instances=new Array(); 

上面的行声明了包含所有引用属性实例的数组。对于 ReferenceAttribute 的每个新对象,它将被推送到这个数组中,在方法 pushInstance() 中完成。推送总是成功的,我通过控制台日志检查了它们。该数组确实包含 ReferenceAtribute 实例

function ActiveAttribute(arg_hash){
    Attribute.call(this,arg_hash.name,arg_hash.type);
    //some members definition
    this.pushInstance(this); 
};

ActiveAttribute.prototype=new Attribute(); 
ActiveAttribute.prototype.instances=new Array(); 

在程序中使用它

var ref_attr=ReferenceAttribute.prototype.find("a uid"); 

给出错误说它不能调用未定义的 forEach 方法。它可以调用方法find,所以继承得很好。但是我猜find方法定义中的“this._ proto _instances”是错误的。

编辑 :

Attribute.prototype.pushInstance=function(my_attribute){    
    this.__proto__.instances.push(my_attribute);    
}; 

此功能有效。尽管实例数组由 ActiveAttribute 或 ReferenceAttribute 拥有,而不是 Attribute 本身,但此函数确实可以将其推送到数组。

4

2 回答 2

2

这是因为你正在这样做:

var ref_attr=ReferenceAttribute.prototype.find("a uid"); 

对象是从构造函数创建的实例,没有ReferenceAttribute.prototype属性 ,也没有直接在对象上定义的属性。AttributeAttribute.prototype.instances.instances

于 2013-10-11T03:00:31.373 回答
2

user2736012 有你的答案,所以只是评论:

__proto__属性不是标准化的,也不是所有正在使用的浏览器都支持的,所以不要使用它。此外,如果要访问 Object 的[[Prototype]]属性,请使用标准属性解析:

this.instances

如果要直接引用继承的方法,继承的意义何在?

于 2013-10-11T03:26:04.093 回答