admin管理员组文章数量:1345407
how could i call the parent method of another method in dojo. consider the following example:
var parent = declare(null,{
m1: function(arg){
console.log("parent.m1");
},
m2: function(arg){
console.log("parent.m2");
}
});`enter code here`
var child = declare(parent,{
m1: function(arg){
console.log("child.m1");
// how can i call parent.**m2** here directly without calling child.m2
},
m2: function(arg){
console.log("child.m2");
}
});
how can i call parent.m2 directly from child.m1 without invoking child.m2 at all
now suppose i define two modules as the following:
parentModule.js
var parent = declare(null,{
m1: function(arg){
console.log("parent.m1");
},
m2: function(arg){
console.log("parent.m2");
}
});
return declare("ParentModule",[parent,child]);
//******************************************//
childModule.js
return declare("child",null,{
m1: function(arg){
console.log("child.m1");
// how can i call parent.**m2** here directly without calling child.m2
//if we call ParentModule.prototype.m2.call(this,arguments); this will call child.m2
//as child module override the parent now
//also calling this.getInherited("m2",arguments); will call child.m2 !!!
//how to fix that?
},
m2: function(arg){
console.log("child.m2");
}
});
how could i call the parent method of another method in dojo. consider the following example:
var parent = declare(null,{
m1: function(arg){
console.log("parent.m1");
},
m2: function(arg){
console.log("parent.m2");
}
});`enter code here`
var child = declare(parent,{
m1: function(arg){
console.log("child.m1");
// how can i call parent.**m2** here directly without calling child.m2
},
m2: function(arg){
console.log("child.m2");
}
});
how can i call parent.m2 directly from child.m1 without invoking child.m2 at all
now suppose i define two modules as the following:
parentModule.js
var parent = declare(null,{
m1: function(arg){
console.log("parent.m1");
},
m2: function(arg){
console.log("parent.m2");
}
});
return declare("ParentModule",[parent,child]);
//******************************************//
childModule.js
return declare("child",null,{
m1: function(arg){
console.log("child.m1");
// how can i call parent.**m2** here directly without calling child.m2
//if we call ParentModule.prototype.m2.call(this,arguments); this will call child.m2
//as child module override the parent now
//also calling this.getInherited("m2",arguments); will call child.m2 !!!
//how to fix that?
},
m2: function(arg){
console.log("child.m2");
}
});
Share
Improve this question
edited Mar 6, 2013 at 20:28
user1040987
asked Mar 6, 2013 at 14:18
user1040987user1040987
832 silver badges9 bronze badges
1
- 1 I am confused by your hierarchy. Why is Parent extending the Child? Shouldn't it be the other way around? I posted a jsfiddle that shows how I think you should define your modules. – Craig Swing Commented Mar 6, 2013 at 21:23
2 Answers
Reset to default 7When using dojo's declare you can use this.inherited(arguments)
in the child function to call the parent function, see:
http://dojotoolkit/reference-guide/1.8/dojo/_base/declare.html#dojo-base-declare-safemixin
m1: function (arg) {
console.log("child.m1");
this.inherited(arguments);
}
You can use the javascript's prototype functionality to acplish what you are asking.
m1: function(arg){
console.log("child.m1");
parent.prototype.m2.apply(this, arguments);
},
More about prototype can be found here How does JavaScript .prototype work?
Here is an example of this working http://jsfiddle/cswing/f9xLf/
本文标签: javascripthow to call the parent method of another method in dojoStack Overflow
版权声明:本文标题:javascript - how to call the parent method of another method in dojo - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743808658a2542651.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论