mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 19:41:57 +08:00
fix(plugin-locale): 修复默认语言取值问题
This commit is contained in:
parent
66a8572ed6
commit
47b32a2767
@ -19,18 +19,22 @@ const getDefaultLocale = () => {
|
|||||||
if (fes_locale) {
|
if (fes_locale) {
|
||||||
return {
|
return {
|
||||||
locale: fes_locale,
|
locale: fes_locale,
|
||||||
fallbackLocale: fes_locale,
|
fallbackLocale: defaultOptions.fallbackLocale,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
if (BASE_NAVIGATOR) {
|
if (BASE_NAVIGATOR) {
|
||||||
return {
|
const keys = locales.map(item=> item.locale);
|
||||||
locale: window.navigator.language,
|
const findKey = keys.find(item=> item.includes(window.navigator.language))
|
||||||
fallbackLocale: window.navigator.language,
|
if(findKey){
|
||||||
};
|
return {
|
||||||
|
locale: findKey,
|
||||||
|
fallbackLocale: defaultOptions.fallbackLocale,
|
||||||
|
};
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return {
|
return {
|
||||||
locale: 'zh-CN',
|
locale: defaultOptions.locale,
|
||||||
fallbackLocale: 'zh-CN',
|
fallbackLocale: defaultOptions.fallbackLocale,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,6 +4,6 @@ export default {
|
|||||||
externalLink: 'externalLink',
|
externalLink: 'externalLink',
|
||||||
mock: 'mock',
|
mock: 'mock',
|
||||||
test: {
|
test: {
|
||||||
b: 1,
|
test: 'test',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -4,6 +4,6 @@ export default {
|
|||||||
externalLink: '外部链接',
|
externalLink: '外部链接',
|
||||||
mock: '代理',
|
mock: '代理',
|
||||||
test: {
|
test: {
|
||||||
b: 1,
|
test: '测试',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -13,7 +13,7 @@ import { FButton } from '@fesjs/fes-design';
|
|||||||
|
|
||||||
defineRouteMeta({
|
defineRouteMeta({
|
||||||
name: 'index',
|
name: 'index',
|
||||||
title: '$home',
|
title: '$test.test',
|
||||||
});
|
});
|
||||||
|
|
||||||
console.log('123123'.replaceAll('123', '234'));
|
console.log('123123'.replaceAll('123', '234'));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user