前端 vue router 传递参数

GET方式传参

传参: 
this.$router.push({
        path:'/xxx',
        query:{
          id:id
        }
      })
  
接收参数:
this.$route.query.id

POST方式传参

传参: 
this.$router.push({
        name:'xxx',
        params:{
          id:id
        }
      })
  
接收参数:
this.$route.params.id
posted @ 2020-05-12 23:31  呓语i  阅读(140)  评论(0编辑  收藏  举报