强制模板刷新ember.js

时间:2015-04-09 08:02:25

标签: javascript ember.js refresh

我正在使用I18n localization package来处理我应用的切换语言部分。它使用全局变量来设置所需的语言,并使用json文件来存储翻译。

由于语言切换只是全局变量的变化,因此ember不会检测到它并且不会自动呈现模板。我通过应用程序控制器中的操作强制它:

Extranet.ApplicationController = Ember.ObjectController.extend(
{
    actions:
    {
        localToFr: function()
        {

            this.localisation('fr'); // this changes the global variable
            this.get('target.router').refresh(); // this is what refresh the template
        },
        localToEn: function()
        {
            this.localisation('en');
            this.get('target.router').refresh();
        }
    },
    localisation: function(lg)
    {
        I18n.locale = lg;
    }
})

我遇到两个问题: 1)应用程序模板不会通过我的

重新呈现
this.get('target.router').refresh();

2)而我的另一个问题是,它不适用于不请求服务器访问的模板(例如:路由嵌套'authSession')

Extranet.Router.map(function()
    {
        this.resource(
            'parkings', {path:'/'}, function ()
            {
                this.route('parking', {path:'/parking/:parking_id'});
                this.route('historique', {path:'/parking/:parking_id/historique'});
                this.route('sessAct', {path:'/parking/:parking_id/sessAct'});
                this.route('rapport', {path:'/parking/:parking_id/rapport'});
            }
        );
        this.resource(
            'authSession', function ()
            {
                this.route('login');
                this.route('logout');
            }
        );
    }
);

1 个答案:

答案 0 :(得分:1)

我遇到了类似的问题。我刚刚在主视图上使用了View.rerender(),这是我个案中的一种形式。