admin管理员组文章数量:1344508
I want to update query on url. But, $router.push does not updating url. disp
is different value for each call. Why?
handle: function(disp) {
let route = Object.assign({}, this.$route);
route.query.disp = disp;
this.$router.push(route);
},
versions.
"vue": "^2.5.17",
"vue-router": "^3.0.1",
route (console.log)
I want to update query on url. But, $router.push does not updating url. disp
is different value for each call. Why?
handle: function(disp) {
let route = Object.assign({}, this.$route);
route.query.disp = disp;
this.$router.push(route);
},
versions.
"vue": "^2.5.17",
"vue-router": "^3.0.1",
route (console.log)
Share Improve this question edited Oct 24, 2018 at 17:07 asked Oct 24, 2018 at 16:08 user4829254user4829254 4-
can you do a console.log of route before the
push()
to check values of the object – Andrei Commented Oct 24, 2018 at 16:48 - I add picture of console.log with route. – user4829254 Commented Oct 24, 2018 at 17:07
-
not sure, everything seems to be correct overall, have you tried to navigate by using an object directly?
this.$router.push({ name: 'ponent name'})
to make sure router is configured correctly – Andrei Commented Oct 24, 2018 at 17:12 -
I see
console.log(this.$route.query.disp);
.$route.query.disp
is updated. But url is not updating. – user4829254 Commented Oct 24, 2018 at 17:56
1 Answer
Reset to default 6You shouldn't try to push to the route object. Instead you should use one of these:
// literal string path
router.push('home')
// object
router.push({ path: 'home' })
// named route
router.push({ name: 'user', params: { userId: 123 }})
// with query, resulting in /register?plan=private
router.push({ path: 'register', query: { plan: 'private' }})
In your case:
this.$router.push({path: this.$route.path, query: {disp: disp}})
本文标签: javascriptvuerouter thisrouterpush not working when updating queryStack Overflow
版权声明:本文标题:javascript - vue-router: this.$router.push not working when updating query - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743768811a2535740.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论