From 58b73d3a70961e4b0b1b45c2219e43ca2456e6fd 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:34:15 +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 4eb9233..6977e22 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 } })