如何在dojo中调用另一个方法的父方法

时间:2013-03-06 14:18:32

标签: javascript dojo

我怎么能在dojo中调用另一个方法的父方法。 请考虑以下示例:

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");
}

});

如何直接从child.m1调用parent.m2而不调用child.m2

现在假设我定义了两个模块如下:

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");
    }

    });

2 个答案:

答案 0 :(得分:6)

使用dojo的声明时,您可以在子函数中使用this.inherited(arguments)来调用父函数,请参阅:

http://dojotoolkit.org/reference-guide/1.8/dojo/_base/declare.html#dojo-base-declare-safemixin

m1: function (arg) {
    console.log("child.m1");
    this.inherited(arguments);
}

答案 1 :(得分:2)

您可以使用javascript的原型功能来完成您的要求。

m1: function(arg){
    console.log("child.m1");
    parent.prototype.m2.apply(this, arguments);
},

有关原型的更多信息,请访问How does JavaScript .prototype work?

以下是此工作的示例 http://jsfiddle.net/cswing/f9xLf/