最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - vue-router: this.$router.push not working when updating query - Stack Overflow

programmeradmin0浏览0评论

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
Add a ment  | 

1 Answer 1

Reset to default 6

You 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}})
发布评论

评论列表(0)

  1. 暂无评论