From f2ec129dc570f971dbb65ab1e3892a73f33b1d61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=B6=E6=B3=A5?= Date: Thu, 31 Aug 2023 00:57:29 +0000 Subject: [PATCH] update handbook/docs/file-provider.mdx. filename->fileName MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 陶泥 --- handbook/docs/file-provider.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handbook/docs/file-provider.mdx b/handbook/docs/file-provider.mdx index e7acb27717..ba731ce1c3 100644 --- a/handbook/docs/file-provider.mdx +++ b/handbook/docs/file-provider.mdx @@ -247,7 +247,7 @@ public async Task UploadFileAsync(IFormFile file) } // 返回文件名(这里可以自由返回更多信息) - return filename; + return fileName; } ``` -- Gitee