From 0e15d806254d44ad9ba8a9cf4232ee8775652fb3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E6=B5=B7=E6=B4=8B?= Date: Sat, 23 May 2026 15:39:33 +0800 Subject: [PATCH] test code --- routes/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/upload.js b/routes/upload.js index 6977e22..4eb9233 100644 --- a/routes/upload.js +++ b/routes/upload.js @@ -39,7 +39,7 @@ router.post('/', upload.single('file'), async (ctx) => { const fileUrl = `http://110.42.255.239:3005/uploads/${ctx.file.filename}` ctx.body = { code: 200, - message: '上传成功', + message: '上传成功!!', url: fileUrl } })