如何在 nuxt.config 路由生成期间使用 view-i18n 转换 url 参数
How to use view-i18n to translate url parameters during route generation in nuxt.config
我正在为一家房地产机构开发多语言网站项目,我使用下面的项目使翻译一切正常,最后一步是在路由生成期间翻译动态 url 的参数
https://github.com/paulgv/nuxt-i18n-routing
但是我不知道如何在路由生成过程中使用 view-i18n,你能帮我吗?
这是我想使用的代码片段:
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import { ROUTES_ALIASES, DEFAULT_LOCALE, I18N } from '~/config'
Vue.use(VueI18n)
export default ({ app, store }) => {
app.i18n = new VueI18n({
// fallbackLocale: DEFAULT_LOCALE,
messages: I18N,
lazy: true,
langDir: 'lang/',
parsePages: false,
pages: ROUTES_ALIASES
// silentTranslationWarn: true
})
app.i18n.locale = store.state.i18n.currentLocale
app.i18n.path = (link) => {
console.log(link)
if (app.i18n.locale === app.i18n.fallbackLocale) {
return `/${link}`;
}
return `/${app.i18n.locale}/${link}`;
}
}
我想调用 app.i18n.t('entitie.slug') 到 nuxt.config.js :
generate: {
routes: function () {
let results = axios.get(process.env.BASE_URL + '/entities')
.then((response) => {
return response.data.map((entitie) => {
return {
route: '/en/myurl/' + app.i18n.t(entitie.slug)
}
})
})
}
}
我最终选择了一个不是真正绑定的解决方案,我的翻译系统为 slugs 生成了特定的文件
import en from './lang/translations/slug/en.json'
翻译变成简单的键/值替换
I would like to do that "route: '/en/myurl/' + en[entity.slug]"
import en from './lang/translations/slug/en.json'
... some code
generate: {
routes: function () {
... some code
let results = axios.get(process.env.BASE_URL + '/entities')
.then((response) => {
return response.data.map((entity) => {
return {
route: '/en/myurl/' + en[entity.slug]
}
})
})
... some code
}
}
我正在为一家房地产机构开发多语言网站项目,我使用下面的项目使翻译一切正常,最后一步是在路由生成期间翻译动态 url 的参数
https://github.com/paulgv/nuxt-i18n-routing
但是我不知道如何在路由生成过程中使用 view-i18n,你能帮我吗?
这是我想使用的代码片段:
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import { ROUTES_ALIASES, DEFAULT_LOCALE, I18N } from '~/config'
Vue.use(VueI18n)
export default ({ app, store }) => {
app.i18n = new VueI18n({
// fallbackLocale: DEFAULT_LOCALE,
messages: I18N,
lazy: true,
langDir: 'lang/',
parsePages: false,
pages: ROUTES_ALIASES
// silentTranslationWarn: true
})
app.i18n.locale = store.state.i18n.currentLocale
app.i18n.path = (link) => {
console.log(link)
if (app.i18n.locale === app.i18n.fallbackLocale) {
return `/${link}`;
}
return `/${app.i18n.locale}/${link}`;
}
}
我想调用 app.i18n.t('entitie.slug') 到 nuxt.config.js :
generate: {
routes: function () {
let results = axios.get(process.env.BASE_URL + '/entities')
.then((response) => {
return response.data.map((entitie) => {
return {
route: '/en/myurl/' + app.i18n.t(entitie.slug)
}
})
})
}
}
我最终选择了一个不是真正绑定的解决方案,我的翻译系统为 slugs 生成了特定的文件
import en from './lang/translations/slug/en.json'
翻译变成简单的键/值替换
I would like to do that "route: '/en/myurl/' + en[entity.slug]"
import en from './lang/translations/slug/en.json'
... some code
generate: {
routes: function () {
... some code
let results = axios.get(process.env.BASE_URL + '/entities')
.then((response) => {
return response.data.map((entity) => {
return {
route: '/en/myurl/' + en[entity.slug]
}
})
})
... some code
}
}