码迷,mamicode.com
首页 > 其他好文 > 详细

Vue系列:通过vue-router如何传递参数

时间:2016-08-17 13:41:36      阅读:429      评论:0      收藏:0      [点我收藏+]

标签:

使用vue-router 来实现webapp的页面跳转,有时候需要传递参数,做法如下:

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


————完————





Vue系列:通过vue-router如何传递参数

标签:

原文地址:http://www.cnblogs.com/strinkbug/p/5779531.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!