我在弄清楚动态nuxt链接时遇到了麻烦。
在首页(localhost:3030/
)上,有axios从后端服务器获取的文章。
每篇文章都必须指向路线localhost:3030/articles/:postid
。
:postid
值存储在axios.get
数据中,以便我可以动态处理它们。
但是,我不确定如何创建动态nuxt-link
,其中每篇文章都有自己的nuxt-link
指向其文章内容(/articles/:postid
)?
我尝试使用method
执行this.$router.push({ path: 'articles/:postid'})
,它指向的路由如下:articles/:postid
动态路由的最佳方法是什么?
请帮帮我。谢谢:)