嘿,我已經得到了此代碼來檢查語言和重定向到正確的.html文件。它在Android中完美工作,但不適用於iOS。在iOS中有些不同,或者代碼有什麼問題?Phonegap /科爾多瓦:全球化不適用於iOS
請幫幫我!
代碼:
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
function onDeviceReady() {
navigator.globalization.getPreferredLanguage(
function (language)
{
if(language.value == "English")
{
window.location.replace("fadeE.html");
}
else if(language.value == "Deutsch")
{
window.location.replace("fade.html");
}
else if(language.value == "Nederlands")
{
window.location.replace("fadeN.html");
}
else
{
window.location.replace("fadeE.html");
}
},
function()
{
alert('Error getting language\n');
}
);
}
被重定向到英語此刻的方式,即使在設備設置爲德語或荷蘭語 –