javascript OOP 从父对象获取
如何像这样访问子对象的父属性?
var foo = function foo(input){ this.input = input; };
function bar(input){ return new foo(input); }
foo.prototype = {
baz : {
qux : function(){
alert(this.parent.input );
}
},
corge : function(){
alert(this.input );
}
}
bar('test').corge(); //alerts 'test'
bar('test').baz.qux(); //errors 'this.parent is undefined'
How can I access the parent attribute of a child object like this?
var foo = function foo(input){ this.input = input; };
function bar(input){ return new foo(input); }
foo.prototype = {
baz : {
qux : function(){
alert(this.parent.input );
}
},
corge : function(){
alert(this.input );
}
}
bar('test').corge(); //alerts 'test'
bar('test').baz.qux(); //errors 'this.parent is undefined'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你不能。
无论有多少个 new foo,都会有一个 baz,因此无法从通常指向单例的
this
进行映射。 code>foo.prototype.baz 到foo
的特定实例。看来您可能打算为每个
foo
实例创建一个baz
。试试这个
You can't.
There is one
baz
regardless of how manynew foo
there are, so there is no way to map fromthis
which typically points to the singletonfoo.prototype.baz
to a specific instance offoo
.It looks like you probably meant to create a
baz
per instance offoo
.Try this
<罢工>
尝试像这样定义
baz
:更新:
我相信这会做你想做的事:
演示:http://jsfiddle.net/maniator/rKcwP/
代码:
Try defining
baz
like so:Update:
I believe this will do what you want it to do:
Demo: http://jsfiddle.net/maniator/rKcwP/
Code: