我有以下代码:
var objectParent:{
child1:{
test1:function(){},
test2:function(){}
},
child2:{
demo1:function(){},
demo2:function(){},
parent:this // gives child2
grandparent: .... // need to reference objectParent here
}
}
我们可以使用这个关键字来引用对象,但是对于大对象或者我的意思是父对象的父对象呢?
现在,我正在使用grandparent:objectParent来引用父对象
有没有像这个选择器那样引用父对象的其他方式?
这些是我的编码是坏的、好的还是更好的?