Я создаю многоязычное веб-приложение Nuxt.Используя этот пример из официальной документации (Codepen ссылка ), я больше не хочу использовать локальные файлы JSON, где мои переводы сохраняются для работы, как определено в коде ниже:
messages: {
'en': require('~/locales/en.json'), # I want to get this asynchronously from an HTTP URL
'fr': require('~/locales/fr.json') # I want to get this asynchronously from an HTTP URL
}
Интересно, какие доступные альтернативы для асинхронной установки значений en
и fr
, вместо этого считывая данные JSON из URL?
plugins / i18n.js:
import Vue from 'vue'
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
export default ({ app, store }) => {
// Set i18n instance on app
// This way we can use it in middleware and pages asyncData/fetch
app.i18n = new VueI18n({
locale: store.state.locale,
fallbackLocale: 'en',
messages: {
'en': require('~/locales/en.json'), # How to get this asynchronously?
'fr': require('~/locales/fr.json') # # How to get this asynchronously?
}
})
app.i18n.path = (link) => {
if (app.i18n.locale === app.i18n.fallbackLocale) {
return `/${link}`
}
return `/${app.i18n.locale}/${link}`
}
}
Что я пробовал :
messages: {
'en': axios.get(url).then((res) => {
return res.data
} ),
'fr': require('~/locales/fr.json')
}
Где url
указывает на файл /locals/en.json
, который размещен в моем профиле Github.