环境"vue":"^1.0.14""vue-router":"0.7.13",路由1'/about/:aa':{name:'about',component:require('./components/about.vue')},跳转1this.$router.go({name:'about',params:{aa:11}});结果1以下方式,能够使用{{$route.params.aa}}获取到值。路由2'/about':{name:'about',component:require('./components/about.vue')},跳转2this.$router.go({name:'about',params:{aa:11}});结果2那么{{$route.params.aa}}获取不到值。query方式能够传递一个对象,但是会拼接在URL上面。期望如果我想通过params传递一个对象,应该如何使用?
添加回答
举报
0/150
提交
取消