提交 905837d7 编写于 作者: VK1688's avatar VK1688

1

上级 2ff0d563
...@@ -650,13 +650,15 @@ class CallFunctionUtil { ...@@ -650,13 +650,15 @@ class CallFunctionUtil {
fail, fail,
} = params; } = params;
// 只有是系统异常时才进行重试 // 只有是系统异常时才进行重试
if (params.needRetry && sysFail) { if(params.needRetry){
if (sysFail || (res.code && [90001].indexOf(res.code) > -1)) {
if (!obj.hookResult || (typeof obj.hookResult === "function" && !obj.hookResult(err))) { if (!obj.hookResult || (typeof obj.hookResult === "function" && !obj.hookResult(err))) {
Logger.sysFail = true; Logger.sysFail = true;
if (typeof params.retry == "function") params.retry(res, params); if (typeof params.retry == "function") params.retry(res, params);
return false; return false;
} }
} }
}
if (typeof noAlert !== "undefined") needAlert = !noAlert; if (typeof noAlert !== "undefined") needAlert = !noAlert;
if (typeof needAlert === "undefined") { if (typeof needAlert === "undefined") {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册