我正在构建一个包含多个“模块”的应用程序。每个模块都需要一组类似的基本功能,因此我创建了一个基本模块,每个模块都将通过原型继承从该基本模块中继承。基本模块上的一些函数名称很长,并且由于这些函数经常使用,我想在每个模块中分配较短的名称,但这会导致将“this”的值设置为等于 DOMWindow 的问题。
请看下面的代码:
var SAMPLEAPP = SAMPLEAPP || {};
//This is a base module that I want all other modules to inherit from
SAMPLEAPP.Module = function(){
};
SAMPLEAPP.Module.prototype.someLongFunctionName = function(){
console.log(this);
};
//This is a module that inherits from the base module
SAMPLEAPP.RouterModule= function(){
var shortName = this.someLongFunctionName;
//This correctly logs 'SAMPLEAPP.RouterModule', but I would rather not type
//out this long function name each time I need to use the function
this.someLongFunctionName();
//However, this code logs 'DOMWindow' when I would expect the value of 'this'
//to be the same as the direct call to this.someLongFunctionName
shortName();
};
SAMPLEAPP.RouterModule.prototype = new SAMPLEAPP.Module();
new SAMPLEAPP.RouterModule();
我的问题:如何修改代码以便调用 shortName() 记录 SAMPLEAPP.RouterModule?如果可能的话,我宁愿改变模块的定义方式而不是实际调用 shortName(即 shortname.call(this),违背了为 someLongFunctionName 创建别名的目的)