我想在我的应用程序中使用两种语言,所以我想要一个类似字典的字符串文件(有点像在android开发中(,在那里我只需用id存储字符串,并且可以通过id轻松访问字符串,也许可以用我的语言的参数。什么样的文件在我的vue组件中易于解析,并且适合我的用例?
您可以使用普通的js文件并导出包含字符串的普通对象。
但是,我强烈建议您改用vue-i18n。
安装:npm install vue-i18n
或者,如果您正在使用Vue Cli,请运行:vue add i18n
快速使用:
// If using a module system (e.g. via vue-cli), import Vue and VueI18n and then call Vue.use(VueI18n).
// import Vue from 'vue'
// import VueI18n from 'vue-i18n'
//
// Vue.use(VueI18n)
// Ready translated locale messages
const messages = {
en: {
message: {
hello: 'hello world'
}
},
ja: {
message: {
hello: 'こんにちは、世界'
}
}
}
// Create VueI18n instance with options
const i18n = new VueI18n({
locale: 'ja', // set locale
messages, // set locale messages
})
然后在你的模板上
<p> {{ $t("message.hello") }} </p>
您可以安装:npm install vue-i18n
在src中创建新文件:
i18n.js
import Vue from 'vue';
import VueI18n from 'vue-i18n';
Vue.use(VueI18n);
/*
* Load @/locales file with languages sets
*/
function loadLocaleMessages() {
// Read context
const locales = require.context('@/locales', true, /[A-Za-z0-9-_,s]+.json$/i);
const messages = {};
// Find matches language set and use that one
locales.keys().forEach((key) => {
const matched = key.match(/([A-Za-z0-9-_]+)./i);
if (matched && matched.length > 1) {
const locale = matched[1];
messages[locale] = locales(key);
}
});
return messages;
}
// Language of the browser UI.
let language = window.navigator.userLanguage || window.navigator.language;
// Use that
let currentLanguage = language.slice(0, 2);
// Exports VueI18n settings global
export default new VueI18n({
locale: currentLanguage,
fallbackLocale: 'de',
formatFallbackMessages: true,
silentFallbackWarn: true,
messages: loadLocaleMessages(),
});
在main.js中
import Vue from 'vue';
import App from './App.vue';
import router from './router';
import store from './store';
/*
* START Import Internationalization - Translation
*/
import i18n from '@/utils/i18n.js';
// Use beforeEach route guard to set the language
router.beforeEach((to, from, next) => {
// Use the language from the routing param or default language
let language = to.params.lang;
// Default language
if (!language) {
language = 'en';
}
// Set the current language for i18n.
i18n.locale = language;
next();
});
//* END Import Internationalization - Translation
// Vue App
new Vue({
i18n,
router,
store,
render: (h) => h(App),
}).$mount('#app');
在router.js中
import Vue from 'vue';
import Router from 'vue-router';
import Login from './views/Login.vue';
import i18n from '@/i18n';
Vue.use(Router);
const router = new Router({
mode: 'history',
base: process.env.BASE_URL,
routes: [
{
path: '/',
redirect: `/${i18n.locale}/`,
},
// Language prefix for everyone
{
path: '/:lang',
component: {
render(c) {
return c('router-view');
},
},
children: [
{
path: '/',
name: 'Login',
component: Login,
},
{
path: 'home',
name: 'Home',
component: () => import(/* webpackChunkName: "Home" */ './views/Home.vue'),
},
{
path: '*', // Fullback path
redirect: '/',
},
],
},
],
// Scroll always on top the Page
scrollBehavior() {
document.getElementById('app').scrollIntoView();
},
});
// Set the Routers
export default router;
然后用您的localeJSON文件创建文件夹locale。
例如:
en.json
{
"general": {
"search": "Search",
"loading": "Loading..."
}
}
de.json
{
"general": {
"search": "Suchen",
"loading": "Laden..."
}
}
用法:
在模板中:{{ $t('general.search') }}
在JS:this.$t('general.loading')
中