我有一个使用nuxt-i18n的多语言Nuxt应用,其路由被忽略。
nuxt.config.js
…
seo: true,
parsePages: false,
strategy: 'prefix_except_default',
pages: {
'cats': {
en: '/cats',
de: '/katzen',
fr: false
}
}
…
因此该页面无法使用法语。
我的语言开关看起来像这样-到目前为止非常简单:
LanguageSwitch.vue
computed: {
availableLocales () {
return this.$i18n.locales.filter(i => i.code !== this.$i18n.locale)
}
}
<ul class="language-switch__list">
<li class="language-switch__item" v-for="locale in availableLocales">
<NuxtLink
class="language-switch__link"
rel="alternate" :key="locale.code"
:to="switchLocalePath(locale.code)"
:hreflang="locale.code" :lang="locale.code"
active-class="none"
exact>
{{locale.name}}
</NuxtLink>
</li>
</ul>
我已更改过滤器以删除缺少的页面/语言,如:
return this.$i18n.locales.filter(i => (i.code !== this.$i18n.locale) && (this.$nuxt.$route.path !== this.switchLocalePath(i.code)) )
可以,但是我想要一个更好的解决方案。这是我的问题:如果忽略路由,是否有一种简单的方法可以将路由更改为语言首页(/,/ en,/ de)?
我已经通过在其周围包装一个附加函数解决了这个问题:
<nav id="language-switch" v-if="isOpen" class="language-switch__nav arrow arrow--top">
<ul class="language-switch__list">
<li class="language-switch__item" v-for="locale in availableLocales">
<NuxtLink class="language-switch__link" rel="alternate" :key="locale.code" :to="switchLocalePathFallback(locale.code)" :hreflang="locale.code" :lang="locale.code" active-class="none" exact>{{locale.name}}</NuxtLink>
</li>
</ul>
</nav>
…
computed: {
availableLocales () {
return this.$i18n.locales.filter(i => (i.code !== this.$i18n.locale) )
}
},
methods: {
switchLocalePathFallback(code) {
let langPath = this.switchLocalePath(code),
path = langPath
if(langPath == this.$nuxt.$route.path ) {
path = this.$i18n.defaultLocale != code ? '/'+code : '/'
}
return path
}
}
…
不是很灵活,但是对我有用。