From a61171f95618b9876ec2a5dd1e45ba77387e86db Mon Sep 17 00:00:00 2001 From: al Date: Wed, 6 Nov 2024 16:28:44 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A3=80=E6=9F=A5=E9=80=80=E5=87=BA=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/WithAuth/index.js | 2 ++ utils/requireAPI.js | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/components/WithAuth/index.js b/components/WithAuth/index.js index a6ac499..89b2909 100644 --- a/components/WithAuth/index.js +++ b/components/WithAuth/index.js @@ -26,7 +26,9 @@ export default function WithAuth(WrappedComponent) { return; } if (hasToken) { + console.log("hasToken-----------", hasToken); const currentIsLogin = await checkAuth(); + console.log("currentIsLogin-----------", currentIsLogin); if (!currentIsLogin) { Toast.show({ icon: "fail", diff --git a/utils/requireAPI.js b/utils/requireAPI.js index 1aefa00..ece811b 100644 --- a/utils/requireAPI.js +++ b/utils/requireAPI.js @@ -27,7 +27,7 @@ export default function customFetch(method, url, options = {}, needMid) { // 合并选项 const mergedOptions = { ...defaultOptions, body }; - // console.log("body", body); + console.log("body", body); // 返回 Promise 对象 return new Promise((resolve, reject) => { fetch(url, mergedOptions)