如何将URL查询添加到vue.js路由器中的路径?

发布于 2025-01-22 19:45:30 字数 532 浏览 0 评论 0原文

这就是模板组件中使用的路由的方式:

<router-link :to="{ name: 'club' }">
  <lazy-image
    src="club.jpg"
    class="club_class"
    alt="Club alt"
  />
</router-link>

vue:这就是路由器中定义的方式:

const routes = [
    {
        path: '/s/site',
        name: 'club',
        component: () => import('./_pages/Club'),
    },
];
export default routes;

我需要在这样的链接中添加一个静态参数:

'?foo=bar'

我尝试在component.vue中进行硬码。不起作用。 shoud我将其定义为router.js或其他地方?

This is how the route is used in template Component.vue:

<router-link :to="{ name: 'club' }">
  <lazy-image
    src="club.jpg"
    class="club_class"
    alt="Club alt"
  />
</router-link>

And this is how it's defined in router.js:

const routes = [
    {
        path: '/s/site',
        name: 'club',
        component: () => import('./_pages/Club'),
    },
];
export default routes;

I need to add a just a static parameter to the link like this:

'?foo=bar'

I tried to hardcode that in Component.vue but it didn't work. Shoud I define it in router.js as param or somewhere else?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一袭水袖舞倾城 2025-01-29 19:45:30

使用此代码:

<router-link :to="{name: 'club', query: {param1: 'value1', param2: 'value2'}}">go</router-link>

Use this code:

<router-link :to="{name: 'club', query: {param1: 'value1', param2: 'value2'}}">go</router-link>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文