这是请求代码
export function GetDeviceList (deviceTtype) {
return request({
url: urlPrefix + 'get_device_info',
method: 'get',
params: {
device_type: deviceTtype
}
})
}
loadData() {
GetDeviceList(this.currentType).then((ret) => {
console.log(ret.data.data);
this.devices = ret.data.data;
// this.$set(this, 'devices', ret.data)
});
问 自定义方法请求后台数据,总是一次执行两次请求,是否是因为缓存,如何处理?