有两个Javascript文件,比方说A
和B
。
一个包含在另一个中 - B
使用来自A
文件的对象。
首先在我的debug
函数中创建AConfig
对象,
然后我创建BElementBuilder
,使用ABuilder
和AConfig
对象;
目前一切都还好。
但是,当我致电bElement.getBString
时,它会进入me.aBuilder.getAString(Aconfig);
但错误
对象不支持此属性或方法
为什么会这样?
此处A
var AConfig = (function() {
function AConfig(name, flag){
this.name = (name) ? name : -1;
this.flag = (flag) ? true : false;
return this;
}
return AConfig;
})();
var ABuilder = (function() {
function ABuilder(config){
this.config = (config) ? config : new AConfig();
return this;
};
ABuilder.prototype = {
getAString: function(configObj){
var me = this,
config = (configObj) ? configObj : me.config,
name = me.name,
flag = me.flag;
return 'A name is' + name + 'flag =' + flag;
}
}
return ABuilder;
});
此处B
:
!INC aFile.A
var BElementBuilder = (function() {
function BElementBuilder(aConfig, bName){
this.aConfig = (aConfig) ? aConfig : new AConfig();
this.bName = (bName) ? bName : "B";
this.aBuilder = new ABuilder();
return this;
};
BElementBuilder.prototype = {
getBString: function(configObj){
var me = this,
Aconfig = (configObj) ? configObj : me.aConfig,
name = me.bName;
//and here it fails
Aconfig = me.aBuilder.getAString(Aconfig);
return 'B has config of' + Aconfig;
}
}
return BElementBuilder;
})();
function debug(){
var aConfig = new AConfig("AAA", true);
var bElement = new BElementBuilder(aConfig);
var t = bElement.getBString(aConfig);
};
debug();
P.S。
它是JScript
如果它有任何区别
答案 0 :(得分:2)
您忘记了ABuilder
模块上的IIFE调用。这样,ABuilder
不是类构造函数,而是返回新构造函数的模块工厂函数。当您将其称为new ABuilder();
时,它将返回这样的构造函数,该函数将分配给bElement.aBuilder
,而不是您期望的那种。