赞
踩
this.$router.push({path:'/xxx',query:{id:1}});//类似get传参,通过URL传递参数
this.$route.query.id
//由于动态路由也是传递params的,所以在 this.$router.push() 方法中 path不能和params一起使用,否则params将无效。
需要用name来指定页面。 this.$router.push({name:'page2',params:{id:1}});//类似post传参
this.$route.params.id
watch: { '$route'(to, from){ //在这里重新刷新一下 this.getParams(); } }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。