egg_server/utils/pbTools.ts
zhaoyingbo 865308ee31
All checks were successful
Egg CI/CD / build-image (push) Successful in 8m16s
Egg CI/CD / deploy (push) Successful in 7m47s
feat: Update code formatting and fix minor issues
2024-05-05 02:34:16 +00:00

12 lines
324 B
TypeScript

export const managePb404 = async (dbFunc: Function) => {
try {
return await dbFunc()
} catch (err: any) {
console.log("🚀 ~ manage404 ~ err:", err)
// 没有这个提醒就返回空
if (err?.message === "The requested resource wasn't found.") {
return null
} else throw err;
}
}