两种传参方式:

(1)通过query传参,query相当于get请求,页面跳转的时候,可以在地址栏看到请求参数,

// 传参
this.$router.push({name:'home',params:data})

// 取参
this.$route.params.data

(2)通过params传参,params相当于post请求,参数不会再地址栏中显示

// 传参
this.$router.push({path:'/home',query:data})

// 取参
this.$route.query.data

 

Logo

前往低代码交流专区

更多推荐