This commit is contained in:
董海洋
2026-05-23 15:47:35 +08:00
parent a7a2d10a95
commit 7a80c59942
+1 -1
View File
@@ -39,7 +39,7 @@ router.post('/', upload.single('file'), async (ctx) => {
const fileUrl = `http://110.42.255.239:3005/uploads/${ctx.file.filename}` const fileUrl = `http://110.42.255.239:3005/uploads/${ctx.file.filename}`
ctx.body = { ctx.body = {
code: 200, code: 200,
message: '上传成功', message: '上传成功**',
url: fileUrl url: fileUrl
} }
}) })