实时监听组件中路由的变化

Posted 追风少年

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实时监听组件中路由的变化相关的知识,希望对你有一定的参考价值。

实时监听组件中路由的变化,通过watch来进行监听,当路由发生变化时,重新赋值,重新执行从后台获取数据的操作

watch: {
‘$route‘ (to, from) {
this.listQuery.keywords=this.$route.query.keywords
this.searchByKeywords()
}
},
methods: {
searchByKeywords() {
this.$store.dispatch(‘updateLoading‘, true)
fetchSearchByKeywords(this.listQuery)
.then(response => {
this.$store.dispatch(‘updateLoading‘, false)
this.listTotal = response.data.total
this.listData = response.data.data
})
.catch(error => {
console.log(error)
})
}
}

以上是关于实时监听组件中路由的变化的主要内容,如果未能解决你的问题,请参考以下文章

如何实时监听 input 和 textarea输入框值的变化

如何实现一个 Firebase 监听器来观察数据库的实时变化

js实时监听input中值的变化

是否可以在 Vue 应用程序中呈现 Firebase 数据的实时变化?

实时监听移动端输入框的变化

使用jQuery实时监听input输入值的变化