const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`
window.history.replaceState('', '', newUrl) // 会直接替换掉当前url 不会在history中留下记录
或者
window.history.pushState('', '', newUrl) // 会在history中留下记录
const newUrl = this.$route.path + `?id=${this.id}&kjStatus=1`
window.history.replaceState('', '', newUrl) // 会直接替换掉当前url 不会在history中留下记录
或者
window.history.pushState('', '', newUrl) // 会在history中留下记录
本文标题:vue 改变路由(URL)参数不刷新页面
本文链接:https://www.haomeiwen.com/subject/chjnjrtx.html
网友评论