使用vue-router 来实现webapp的页面跳转,有时候须要传递参数,作法以下:
主要有如下几个步骤:
(1) 设置好路由配置
history', router.map({
'/history/:deviceId/:dataId': {
name: '
component: { ... }
}
})
这里有2个关键点:
a)给该路由命名,也就是上文中的 name: 'history',
b)在路径中要使用在路径中使用冒号开头的数字来接受参数,也就是上文中的 :deviceId, :dataId;
(2)在v-link中传递参数;
history', params: { deviceId: 123, dataId:456 }}">history</a> <a v-link="{ name: '
这里的123,456均可以改用变量。
好比该template所对应的组件有2个变量定义以下:
data: function() {
return {
deviceId:123,
dataId:456
}
}
此时上面那个v-link能够改写为:
history', params: { deviceId: deviceId, dataId: dataId }}">history</a> <a v-link="{ name: '
(3)在router的目标组件上获取入参
好比在router目标组件的ready函数中能够这么使用。
ready: function(){
console.log('deviceid: ' + this.$route.params.deviceId);
console.log('dataId: ' + this.$route.params.dataId);
}
————完————