概述
vue-router 同一个页面地址栏参数改变(比如文章的发布和编辑是同一个页面),不会触发vue的created或者mounted钩子,所以数据不会重新渲染。
解决办法有两种:
1:监听地址栏变化(watch),这是vue-router官方给出的解决办法。
监听路由变化,把初始化的方法重新写到监听的方法里面执行
watch: {
'$route' (to, from) {
this.getData(this.$route.query.id)
}
}
methods: {
async getData (id) {
// 按照id获取数据
const { data: { result } } = await this.$http.get('getShowList', {
params: { id }
})
this.dataList = result
}
}
2、给router-view加个唯一的key,来保证路由切换时都会重新渲染触发钩子了
<template>
<div id="main" class="app-main">
<transition :name="transitionName">
<router-view class="router-box" :key="key"></router-view>
</transition>
</div>
</template>
<script>
export default {
computed:{
key(){
return this.$route.name?this.$route.name+ +new Date():this.$route+ +new Date()
}
},
methods: {
}
};
</script>
这里有个坑,就是修改锚点时,可能无法触发
最后
以上就是拉长鸡为你收集整理的vue vue-router 同一个页面地址栏参数改变,页面不刷新的问题的全部内容,希望文章能够帮你解决vue vue-router 同一个页面地址栏参数改变,页面不刷新的问题所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复