@base-web-kits/base-tools-web 1.3.6 → 1.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +93 -0
- package/dist/base-tools-web.umd.global.js +3 -2
- package/dist/base-tools-web.umd.global.js.map +1 -1
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/dist/network/request.d.ts.map +1 -1
- package/package.json +30 -30
- package/src/web/network/request.ts +3 -2
package/dist/index.cjs
CHANGED
|
@@ -1486,7 +1486,8 @@ function request(config) {
|
|
|
1486
1486
|
reject(timeoutError);
|
|
1487
1487
|
return;
|
|
1488
1488
|
}
|
|
1489
|
-
if (!isAbortError && toastError)
|
|
1489
|
+
if (!isAbortError && toastError)
|
|
1490
|
+
(_h = appConfig2.toast) == null ? void 0 : _h.call(appConfig2, { status, msg: `\u8BF7\u6C42\u5931\u8D25,${String(e)}` });
|
|
1490
1491
|
logRequestInfo({ status, config: logConfig, startTime, e });
|
|
1491
1492
|
reject(e);
|
|
1492
1493
|
} finally {
|
|
@@ -1536,7 +1537,7 @@ function logRequestInfo(options) {
|
|
|
1536
1537
|
info.res = cloneDeep(res);
|
|
1537
1538
|
log("info", info);
|
|
1538
1539
|
} else {
|
|
1539
|
-
info.e = e;
|
|
1540
|
+
info.e = e instanceof Error ? { name: e.name, message: e.message, stack: e.stack } : String(e);
|
|
1540
1541
|
log("error", info);
|
|
1541
1542
|
}
|
|
1542
1543
|
}
|