From 678c79c5a7c7f6ba59048ad1b1bbe47808957602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=90=B4=E5=B1=95=E9=B9=8F?= Date: Fri, 5 Dec 2025 17:17:21 +0800 Subject: [PATCH] =?UTF-8?q?fix(test):=20=E4=BF=AE=E6=AD=A3=E6=B5=8B?= =?UTF-8?q?=E8=AF=95=E9=A1=B5=E9=9D=A2=E4=B8=AD=E6=97=A5=E5=BF=97=E6=96=87?= =?UTF-8?q?=E4=BB=B6=E8=B7=AF=E5=BE=84=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将测试页面中的日志文件路径从相对路径改为绝对路径,确保能正确加载日志文件 --- test/test_webhook.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_webhook.html b/test/test_webhook.html index c46c5e5..b8c4dca 100644 --- a/test/test_webhook.html +++ b/test/test_webhook.html @@ -228,7 +228,7 @@ logContent.innerHTML = '加载中...'; try { - const response = await fetch('wps_form_webhook.log'); + const response = await fetch('/log/wps_form_webhook.log'); if (response.ok) { const text = await response.text(); logContent.innerHTML = text;