我的页面的自已定义的方法中执行请求后台数据,显示了两次请求,一次的状态码是301,一次是200,是否是因为缓存,如何关闭缓存?
这是请求代码
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)
});
不太理解,能具体说一下吗
https://wenku.baidu.com/view/31154d65e618964bcf84b9d528ea81c759f52e4e.html