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

Vue router-link路由不同的写法,不一样的效果

时间:2019-11-21 12:18:11      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:ram   localhost   写法   引入   local   man   路径   ret   return   

我想要的路径:http://localhost:8080/#/main/hato/realtime/eventDetail/238

情况一:未进行路由配置:
 {
     path: ‘eventDetail‘,
     name: ‘eventDetail‘,
     component: () => import(‘@/views/security/alarm-management/eventDetail‘)
}

情况二:已进行路由配置

 {
     path: ‘eventDetail/:id‘,
     name: ‘eventDetail‘,
     component: () => import(‘@/views/security/alarm-management/eventDetail‘)
}
在情况一下:

路由用 name和params 
路由跳转:http://localhost:8080/#/main/hato/realtime/eventDetail 

路由用path和query
路由跳转:http://localhost:8080/#/main/hato/realtime/eventDetail?id=238

const showButton = {

  props: ["scope"],
  render: function(h) {
    return (
      <div>
        <router-link to={{name: "eventDetail", params: {id: this.scope.row.id}}}>
          查看详情
        </router-link>
      </div>
    );
  }
};
在情况二下:

路由用 name和params 
路由跳转:http://localhost:8080/#/main/hato/realtime/eventDetail/238

路由用path和query 下面这个路径很奇怪,所以vue在router.js里面有个name属性
路由跳转:http://localhost:8080/#/main/hato/realtime/eventDetail/:id?id=238

const showButton = {
  props: ["scope"],
  render: function(h) {
    return (
      <div>
        <router-link to={{path: "eventDetail/:id", query: {id: this.scope.row.id}}}>
          查看详情
        </router-link>
      </div>
    );
  }
};
总结:query要用path来引入,params要用name来引入
 

Vue router-link路由不同的写法,不一样的效果

标签:ram   localhost   写法   引入   local   man   路径   ret   return   

原文地址:https://www.cnblogs.com/duanhuarong/p/11904338.html

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