我正在使用jquery.i18n
库进行应用程序中的翻译。问题是,一切正常,除非我从一个视图转到另一个视图-语言环境丢失并设置为默认值。我也在使用jquery.history.js
和url.min.js
:
var set_locale_to = function(locale) {
if (locale) {
$.i18n().locale = locale;
}
$('body').i18n();
};
jQuery(function() {
$.i18n().load( {
'en': '../js/i18n/en.json',
'ru': '../js/i18n/ru.json',
'dk': '../js/i18n/dk.json'
} ).done(function() {
set_locale_to(url('?locale'));
History.Adapter.bind(window, 'statechange', function(){
set_locale_to(url('?locale'));
});
$('.switch-locale').on('click', 'a', function(e) {
e.preventDefault();
History.pushState(null, null, "?locale=" + $(this).data('locale'));
});
});
});
是否有我缺少或做错的事情?我还尝试将window
设置为固定的字符串,但这也不起作用。
答案 0 :(得分:1)
到目前为止,我设法使用window.localStorage
解决了我的问题:
var set_locale_to = function(locale) {
if (locale) {
$.i18n().locale = locale;
}
$('body').i18n();
};
jQuery(function() {
$.i18n().load( {
'en': '../js/i18n/en.json',
'ru': '../js/i18n/ru.json',
'dk': '../js/i18n/dk.json'
} ).done(function() {
set_locale_to(url('?locale'));
History.Adapter.bind(window, 'statechange', function(){
set_locale_to(url('?locale'));
});
set_locale_to(localStorage.getItem("locale"));
$('.switch-locale').on('click', 'a', function(e) {
e.preventDefault();
History.pushState(null, null, "?locale=" + $(this).data('locale'));
localStorage.setItem("locale", $(this).data('locale'));
});
});
});
我愿意寻求其他解决方案。