我正在使用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');
}
);
}
);