如何在nuxt.config中的路由生成过程中使用view-i18n转换url参数

时间:2019-06-25 08:16:28

标签: nuxt.js vue-i18n

我正在为一家房地产经纪公司开发多语言网站项目,我使用下面的项目使翻译工作正常,最后一步是在生成路线期间翻译动态网址的参数

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)
              }
            })
        })
    }
}

1 个答案:

答案 0 :(得分:0)

我最终选择了一个没有真正约束力的解决方案,我的翻译系统会为子弹生成特定文件

import en from './lang/translations/slug/en.json'

翻译变成简单的键/值替换

  

我想这样做“路线:'/ 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

    }
}