vue2 router 动态传参,多个参数
1、不显示在url中比如有个路由跳转时需要带两个参数:<router-link to='/straight'>查看</router-link>可以这样写 <router-link to='/straight/goodId/skuId'>查看</router-link>然后去router.js 中 处理这个路由import Vue from 'vue'import Router from 'vu
·
1、不显示在url中
比如有个路由跳转时需要带两个参数:
<router-link to='/straight'>查看</router-link>
可以这样写
<router-link to='/straight/goodId/skuId'>查看</router-link>
然后去router.js 中 处理这个路由
import Vue from 'vue'
import Router from 'vue-router'
import straght from '@/components/straght.vue'
import tab from '@/components/tab.vue'
Vue.use(Router)
export default new Router({
routes: [
{
path:'/straght/:uid/:pid',
name: 'straght',
component:straght
},
{
path:'/tab',
name: 'tab',
component:tab
}
]
})
需要在router.js 中使用vue-router,具体是在path:’/straght/:uid/:pid’, 反斜杠后加冒号,意思是后面就是路由的参数。
然后去对应straght.vue组件中接受这个路由参数:
通过实例的this.$route.params,可访问这个key-value对象,
我们给请求路由赋个值看看:
<router-link to='/straght/15/122'>查看</router-link>
打印如下Object {goodId: "15", skuId: "122"}
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 }
]
}
]
home.vue 中router-link修改为:to=”{ name:’game1’, params: {num: 123} }” params中是要传递的参数,这样传递的参数就不会显示在url中。
更多推荐
已为社区贡献6条内容
所有评论(0)