From a94be10d029e85285d3dc9344f141cbc80f8cf0d Mon Sep 17 00:00:00 2001 From: zhaoyingbo Date: Thu, 20 Mar 2025 06:59:53 +0000 Subject: [PATCH] =?UTF-8?q?feat:=20=E9=94=99=E8=AF=AF=E6=A8=A1=E6=8B=9F?= =?UTF-8?q?=E6=94=B9=E6=88=90startWith=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.ts | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index.ts b/index.ts index 856da20..d673b05 100644 --- a/index.ts +++ b/index.ts @@ -51,10 +51,11 @@ const bunServer = Bun.serve({ // 健康检查 if (path.full("/health")) return genResp.healthCheck() // 错误模拟 - if (path.full("/mock/400")) return genResp.badRequest("模拟错误400") - if (path.full("/mock/403")) return genResp.forbidden("模拟错误403") - if (path.full("/mock/404")) return genResp.notFound("模拟错误404") - if (path.full("/mock/500")) return genResp.serverError("模拟错误500") + if (path.startsWith("/mock/400")) return genResp.badRequest("模拟错误400") + if (path.startsWith("/mock/403")) return genResp.forbidden("模拟错误403") + if (path.startsWith("/mock/404")) return genResp.notFound("模拟错误404") + if (path.startsWith("/mock/500")) + return genResp.serverError("模拟错误500") // 其他 return genResp.healthCheck("hello, there is egg, glade to serve you!")