组件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)
})
}
相关分类