修復无标签编译出错

This commit is contained in:
tangly1024
2025-04-12 08:58:52 +08:00
parent 56fe78e028
commit 85ca8b1da7
3 changed files with 5 additions and 5 deletions

View File

@@ -40,7 +40,7 @@ export async function getOrSetDataWithCustomCache(
) {
const dataFromCache = await getDataFromCache(key)
if (dataFromCache) {
console.log('[缓存-->>API]:', key)
// console.log('[缓存-->>API]:', key) // 避免过多的缓存日志输出
return dataFromCache
}
const data = await getDataFunction(...getDataArgs)