From 4e4e1d62e05bcaebbe85daed6c745c3fa8edf6c3 Mon Sep 17 00:00:00 2001 From: wujingjing <gersonwu@qq.com> Date: 星期二, 25 二月 2025 10:24:31 +0800 Subject: [PATCH] 修复问题,对接全局配置 --- src/utils/storage.ts | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/utils/storage.ts b/src/utils/storage.ts index b64119f..13b6471 100644 --- a/src/utils/storage.ts +++ b/src/utils/storage.ts @@ -1,4 +1,4 @@ -import { accessSessionKey, getSessionKey, getUserNameKey, userNameKey } from './request'; +import { accessSessionKey, getSessionKey, getUserNameKey, userNameKey,domainPrefix } from './request'; /** * window.localStorage 娴忚鍣ㄦ案涔呯紦瀛� @@ -11,7 +11,7 @@ // 鏌ョ湅 v2.4.3鐗堟湰鏇存柊鏃ュ織 setKey(key: string) { // @ts-ignore - return `${__NEXT_NAME__}:${key}`; + return `${__NEXT_NAME__}:${domainPrefix}${key}`; }, // 璁剧疆姘镐箙缂撳瓨 set<T>(key: string, val: T, win = window) { @@ -51,6 +51,7 @@ // 鑾峰彇锛岃繃鏈熷垯娓呴櫎 get(key: string) { const cacheValue: CacheValue<any> = Local.get(key); + if(!cacheValue?.expiredTime) return null; if (new Date().getTime() > cacheValue.expiredTime) { Local.remove(key); return null; -- Gitblit v1.9.3