在枚举中使用多语言,枚举对象无法识别多语言。
文件结构如下所示
i18n.ts中的写法为
// 注册i18n实例并引入语言文件
let i18n: VueI18n = new VueI18n({
locale: "zh_CN",
messages: null
});
export async function setLanguages(filePath: string[] = [
'languages/zh_CN/zh_CN', 'languages/en_US/en_US', 'languages/zh_TW/zh_TW'
]) {
for (let i = 0; i < filePath.length; i++) {
let request = (await import(`@/assets/${filePath[i]}`)).default
if (filePath[i].indexOf('zh_CN') > -1) {
combinat_comm_zh_CN = { comm: {...base_zh_CN.comm, ...request.comm} }
i18n.setLocaleMessage("zh_CN",{ ...base_zh_CN, ...request, ...combinat_comm_zh_CN });
} else if (filePath[i].indexOf('en_US') > -1) {
combinat_comm_en_US = { comm: { ...base_en_US.comm, ...request.comm } }
i18n.setLocaleMessage("en_US",{ ...base_en_US, ...request, ...combinat_comm_en_US });
} else if (filePath[i].indexOf('zh_TW') > -1) {
combinat_comm_zh_TW = { comm: { ...base_zh_TW.comm, ...request.comm } }
i18n.setLocaleMessage("zh_TW",{ ...base_zh_TW, ...request, ...combinat_comm_zh_TW });
}
}
}
Vue.prototype.i18n = i18n
export default i18n;
在main.ts中注册
import i18n from "@/maxbase-ui/assets/languages/i18n";
import { setLanguages } from '@/maxbase-ui/assets/languages/i18n'
async function main_init() {
try {
await setLanguages()
return "success";
} catch (error) {
throw new Error(error);
}
}
main_init().then((res) => {
new Vue({
router,
store,
i18n,
render: (h) => h(App),
}).$mount("#app");
});
在enums/index.ts中使用如下所示
import Vue from 'vue'
/**
* 设备状态枚举
*/
enum equipStatus {
INUSE = 1,
STANDBY = 2,
FAULT = 3,
SCRAPPED = 4,
MAINTENANCE = 5,
}
export const equipmentStatus = {
[equipStatus.INUSE]: Vue.prototype.i18n.t('comm.GL_INUSE_NAME'),
[equipStatus.STANDBY]: Vue.prototype.i18n.t('comm.GL_SPARE_NAME'),
[equipStatus.FAULT]: Vue.prototype.i18n.t('comm.GL_FAULT_NAME'),
[equipStatus.SCRAPPED]: Vue.prototype.i18n.t('comm.GL_SCRAPPED_NAME'),
[equipStatus.MAINTENANCE]: Vue.prototype.i18n.t('comm.GL_MAINTENANCE_NAME')
}
在使用到此枚举对象的模块,解析结果为
1、断点走下来发现执行顺序为,先直接导出i18n对象,然后走enums/index.ts,然后再去执行i118n.ts中的setLanguages()方法,初步判断是因为在执行enums/index.ts中的多语言转换时,i18n的语言包还未挂载到i18n中,所以导致在使用的时候,无法识别多语言。
请问怎样可以让enums/index.ts中的多语言正确识别。