|
|
|
@ -93,13 +93,13 @@ export function initAxiosInterceptors(props) {
|
|
|
|
|
config.url = url;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log(config);
|
|
|
|
|
if (config.method === "post") {
|
|
|
|
|
if (requestMap[config.url] === true) { // 避免重复的请求 导致页面f5刷新 也会被阻止 显示这个方法会影响到定制信息
|
|
|
|
|
console.log(config);
|
|
|
|
|
console.log(JSON.parse(config));
|
|
|
|
|
console.log(config.url);
|
|
|
|
|
console.log("被阻止了是重复请求=================================");
|
|
|
|
|
// console.log(config);
|
|
|
|
|
// console.log(JSON.parse(config));
|
|
|
|
|
// console.log(config.url);
|
|
|
|
|
// console.log("被阻止了是重复请求=================================");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|