组件1 one.vue和组件2 two.vue都发起这个请求,反复来回切换,每次都请求,如何阻止,路由地址是固定的。
mounted: function () {
axios.get('http://192.168.137.1/jsonp-test/data/dish_getbypage.php?start=2')
.then((response)=> {
console.log(response)
this.foodsList=response.data
}).catch((error) => {
console.log(error)
})
}
keep-alive做个缓存,判断什么时候用缓存,什么时候不用,就不会每次都请求了
https://www.jianshu.com/p/424...