写vue项目时,如果想通过路由的query配置项把参数从一个组件传到另一个组件,但是又不希望?id=xxx显示在地址栏(如:http://localhost:8080/test?id=xxx的?id=xxx),该怎么做:
举一个案例:
把Movies.vue的hello参数传到Cinemas.vue
在Movies.vue写:
this.$router.push({
name: 'cinemas',
query: {
hello: 'vue'
}
})
在Cinemas.vue写:
解决方案一:清空query的值
created() {
console.log("this.$route--->", this.$route);
// 方式一:清空query的值
this.$router.push({ query: {} });
}
解决方案二:跳转路由时不带query参数
created() {
console.log("this.$route--->", this.$route);
// 方式二:跳转路由时不带query参数
this.$router.push(this.$route.path);
}
最终页面效果如下所示。可以看到,路径没有显示成http://localhost:8080/cinemas?hello=vue,而是显示成http://localhost:8080/cinemas,这就是我们要的效果。
版权归原作者 EchoLiner 所有, 如有侵权,请联系我们删除。