1. 程式人生 > >vue使用watch 觀察路由變化,重新獲取內容

vue使用watch 觀察路由變化,重新獲取內容

觀察 otl word BE span pos num ole path

watch: {
        $route(to) {
            console.log(to)
            if (to.path.indexOf(‘index‘) != -1) {
                //路由變化後重新獲取帖子列表
                this.$http.get(‘/api/communityList‘).then((res) => {
                    if (res.data.errCode === 0) {
                        let getRes = res.data.data.hotList
                        this.postList = getRes
                    }
                })
            }
        }
    }

vue使用watch 觀察路由變化,重新獲取內容