From 7a80c59942a66a795fb47cb5fcce9279d6c07090 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:47:35 +0800 Subject: [PATCH] test 4 --- routes/upload.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/upload.js b/routes/upload.js index 6977e22..70f5382 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 } })