-5

在下面的代码中,我希望访问 getEnvironment 函数返回的环境对象。我将如何在我的代码中的其他地方访问这个对象?

window.EXAMPLE = {

        config : {
            local: 'http://localhost:8888/example',
            staging_v2: 'http://example.com/staging',
            production: 'http://example.com',
            image_path: '/images/',

        },

        getEnvironment : function () {
            if (window.location.href.indexOf(EXAMPLE.config.local) > -1) {
                var environment = {
                    path : EXAMPLE.config.local + EXAMPLE.config.image_path,
                }
                return environment;
            }

            if (window.location.href.indexOf(EXAMPLE.config.staging_v2) > -1) {
                var environment = {
                    path : EXAMPLE.config.staging_v2 + EXAMPLE.config.image_path,
                }
                return environment;
            }

            if (window.location.href.indexOf(EXAMPLE.config.production) > -1) {

                var environment = {
                    path : EXAMPLE.config.production + EXAMPLE.config.image_path,
                }
                return environment;
            }
        },

    }
4

1 回答 1

3

由方法或函数返回的对象的行为与任何其他对象没有什么不同。这是使用示例中environment的方法返回的对象的示例:

var env = EXAMPLE.getEnvironment();
console.log(env.path);
于 2013-03-04T02:39:27.150 回答