JScript oject A使用对象B看不到它的功能

时间:2017-01-26 06:13:33

标签: javascript prototype jscript

有两个Javascript文件,比方说AB

一个包含在另一个中 - B使用来自A文件的对象。

首先在我的debug函数中创建AConfig对象, 然后我创建BElementBuilder,使用ABuilderAConfig对象;

目前一切都还好。

但是,当我致电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如果它有任何区别

1 个答案:

答案 0 :(得分:2)

您忘记了ABuilder模块上的IIFE调用。这样,ABuilder不是类构造函数,而是返回新构造函数的模块工厂函数。当您将其称为new ABuilder();时,它将返回这样的构造函数,该函数将分配给bElement.aBuilder,而不是您期望的那种。