This commit is contained in:
董海洋
2026-05-24 17:05:26 +08:00
parent 0404d1770c
commit f6c88e5dd2
2 changed files with 28 additions and 11 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ router.post('/', upload.single('file'), async (ctx) => {
const fileUrl = `https://donghy.top/img/${ctx.file.filename}`
ctx.body = {
code: 200,
message: '上传成功**',
message: '上传成功',
url: fileUrl
}
})