`

vue router传递参数 params和query

    博客分类:
  • Vue
 
阅读更多
需求:
list.vue页面
是这样子的,我想把itemId传给hotel.vue页面。
点击url会跳转到http://localhost:8080/#/hotel/1001
分为参数显示在url和参数隐藏


1、参数显示在url中
--------------------------------------------------------------------
list.vue 中
<template> 
<div> 
    <h3>首页</h3> 
    <router-link :to="{path:'/hotel', query: {itemId:1001}}">
       <button>显示</button> 
    </router-link> 
   <router-view></router-view> 
</div> 
</template>
url:http://localhost:8080/#/hotel?itemId=1001

hotel.vue 中
this.$route.query.itemId
F5强制刷新下hotel.vue页面,itemId参数依然存在




2、参数不显示在url中,如果在PC端将传递的值显示在url中,这样无形中就存在安全隐患,如果客户不小心修改了url那样就会出错,移动端就无所谓了,如何才能不显示在url中,同样很简单,但是需要给映射的路径起一个别名,通过name来取别名
--------------------------------------------------------------------
同样只需将上面的main.js中的定义路由改为如下样子,在子路由中通过name来给路径其一个game1的别名。
//定义路由 
const routes = [ 
    { path: "/", redirect: "/home" },//重定向 
    { 
        path: "/home", component: home, 
        children: [ 
            { name: "game1", path: "/home/game/", component: game } 
        ] 
    } 


list.vue 中
router-link修改为:to="{ name:'game1', params: {itemId: 1001} }"
params中是要传递的参数,这样传递的参数就不会显示在url中。

<template> 
<div> 
    <h3>首页</h3> 
    <router-link :to="{ name:'game1', params: {itemId: 1001} }"> 
       <button>显示</button> 
    </router-link> 
   <router-view></router-view> 
</div> 
</template>
url:http://localhost:8080/#/hotel

hotel.vue 中
this.$route.params.itemId
可是F5强制刷新下hotel.vue页面,itemId参数就丢失了

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics