路由器使用 nuxt-i18n 推送 nuxt 中的区域设置路由
Posted
技术标签:
【中文标题】路由器使用 nuxt-i18n 推送 nuxt 中的区域设置路由【英文标题】:router push a locale route in nuxt with nuxt-i18n 【发布时间】:2019-01-06 10:55:12 【问题描述】:我使用 nuxt-i18n 在我的应用程序中实现国际化。我有一个新闻列表,可以给我这样的路线:
myapp.com/news (default language English)
myapp.com/fr/news
myapp.com/it/news
当我点击一条新闻时,我想到达第 _id 页面,只获取我点击的新闻。所以我在一个方法(onclick)中做到了这一点:
onLoadNews(id) this.$router.push("/news/" + id);
但是这样我总是回到英语默认语言。如何以这种方式推送语言环境路由(在方法的函数中)?
【问题讨论】:
【参考方案1】:this.$router.push(this.localePath( name: "news-id", params: id ));
这对我有用,因为我有一个“新闻”文件夹,并且在两个 vue 页面中有 index.vue 和 _id.vue。
【讨论】:
谢谢,值得注意的是,添加_id.vue
会使路由名称更改为news-id
。
如何以编程方式导航到包含当前语言的路线?目前它看起来像这样,但它总是导航到主要语言。 this.$router.push( path: `step/$this.currentStep + 1` );
每一步都是单页,例如step/1
或step/2
以上是关于路由器使用 nuxt-i18n 推送 nuxt 中的区域设置路由的主要内容,如果未能解决你的问题,请参考以下文章
如何让 Nuxt-auth 和 Nuxt-i18n 成为朋友
Nuxt.js:消息:“找不到此页面”(nuxt-i18n)