VUE跳转携带参数 并且获取参数 this.$router.push({name: ‘ ‘, params:{ 参数:‘ ‘}})
程序员文章站
2022-03-29 09:13:50
...
写项目的时候 需要把App.vue里面获取到的openid传递给loginid
搜了一下解决方法
可以使用VUEX
以及父子组件之间传值
但是感觉只需要传递一个参数不需要那么麻烦
所以直接 在route里把参数一起传过去
代码如下
APP.VUE中
this.$router.push({name:'login',params: {openid:toro}});
然后就在login.vue里面取用toro
this.user.openid=this.$route.params.openid
上一篇: 小白必看jquery入门dom操作篇
推荐阅读
-
vue.js this.$router.push获取不到params参数问题
-
Vue中this.$router.push参数获取方法
-
Vue this.$router.push(参数)实现页面跳转操作
-
如何获取Vue中的this.$router.push参数
-
Vue中this.$router.push参数获取方法
-
vue.js this.$router.push获取不到params参数问题
-
Vue this.$router.push(参数)实现页面跳转操作
-
Vue中this.$router.push参数如何获取
-
Vue中this.$router.push参数如何获取
-
如何获取Vue中的this.$router.push参数