如何从命名空间外部更新内部配置?

发布于 2025-01-05 11:12:42 字数 1020 浏览 1 评论 0原文

我有一个如下的 javascript 文件

(function (rpc) {

    rpc.loadHomeBanner = rpc_loadHomeBanner;
    function rpc_loadHomeBanner(){

        // AN is used by Sencha Animator as an Animation variable
        rpc.AN ={};

        rpc.AN.Controller = {

            setConfig: function(configData) {
                // update config crap
            }
        };

        var configData = {
           // config crap
        };

        rpc.AN.Controller.setConfig(configData);
    }
})(rpc);

现在,在页面的第一次加载时,我调用它

rpc.loadHomeBanner(); 

,它会在我需要时启动。

问题是我有一个 handleOrientationChange 方法,需要从命名空间外部更新配置(由于开销,我不想触发 loadHomeBanner 方法)。

 handleOrientationChange: function(){
        // Updating the config for the animation to ensure appropriate width.
        var configData = {
            // config crap
        };
        rpc.AN.Controller.setConfig(configData);
    }

如何从闭包范围之外调用 rpc.AN.controller.setConfig ?

I've got a javascript file as follows

(function (rpc) {

    rpc.loadHomeBanner = rpc_loadHomeBanner;
    function rpc_loadHomeBanner(){

        // AN is used by Sencha Animator as an Animation variable
        rpc.AN ={};

        rpc.AN.Controller = {

            setConfig: function(configData) {
                // update config crap
            }
        };

        var configData = {
           // config crap
        };

        rpc.AN.Controller.setConfig(configData);
    }
})(rpc);

Now on the very first load of the page, I call

rpc.loadHomeBanner(); 

and it fires up just as I need it to.

The problem is that I have a handleOrientationChange method that needs to update the config from outside the namespace (I don't want to fire the loadHomeBanner method because of overhead).

 handleOrientationChange: function(){
        // Updating the config for the animation to ensure appropriate width.
        var configData = {
            // config crap
        };
        rpc.AN.Controller.setConfig(configData);
    }

How can I call rpc.AN.controller.setConfig from outside the scope of the closure?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

初与友歌 2025-01-12 11:12:42

考虑到您已将 rpc 对象传递到该代码模块中,它应该已经可以访问。

It should already be accessible considering you've passed the rpc object into that code module.

夏日浅笑〃 2025-01-12 11:12:42

您应该创建一个工厂

var createRPC = function( rpc ) {
    rpc.AN = {
        Controller: {
            setConfig: function( configData ) {
            }
        }
    };

    return {
        updateConfig: function( configData ) {
            rpc.AN.Controller.setConfig( configData );
        };
    };
};

然后像这样使用它

var rpc = createRPC({});

//handle orientation change
rpc.updateConfig({
    some: 'data'
});

You should create a factory.

var createRPC = function( rpc ) {
    rpc.AN = {
        Controller: {
            setConfig: function( configData ) {
            }
        }
    };

    return {
        updateConfig: function( configData ) {
            rpc.AN.Controller.setConfig( configData );
        };
    };
};

and then use it like

var rpc = createRPC({});

//handle orientation change
rpc.updateConfig({
    some: 'data'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文