Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

vue-router 在 watch 里如何区分to, from?

created () {
    this.getData()
},
watch: {
    $route (to, from) {
        // 执行ajax请求,但只希望在进入时请求,离开时不希望进行请求。
        this.getData()
    }
}

现在的情况是router在进入或离开都进行了请求,请问这怎么解决不必要的请求呢?

Thanks you in advance.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

加一个判断
to.name==='Router to Path'


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...