前端Vue专辑

vue 中query 和params传参

2019-03-21  本文已影响2人  糖心儿的记录

跳转到home.vue页面:this.$router.push({name:'Home'})

或者this.$router.push({path:'/home'})

 this.$router.push({name:'Home',params:{id:data.id}) 还需要传参的话刷新时会丢失参数相对安全

还需要传参的话 this.$router.push({path:'/home',query:{id:data.id}) 刷新时不会丢失参数,传参信息会出现在地址栏上 ,不安全.

接受query传过来的内容:this.$route.query.xxx

接受params传过来的内容:this.$route.params.xxx 

上一篇 下一篇

猜你喜欢

热点阅读