ASP.NET 最小 WebAPI 上传文件

ASP.NET 最小 WebAPI 上传文件

后端

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// accept upload image file
app.MapPost("/api/upload-img/{id}", async Task<IResult> (int id, HttpRequest request) =>
{
Log.Information("Upload image request for id: {0}", id);
if (!loginManager.IsLogin(request.HttpContext.GetIpAddress()))
{
return Results.Json(new ServerAckDash()
{
Success = false,
Message = "Not logged in"
});
}

if (!request.HasFormContentType)
return Results.Json(new ServerAckDash()
{
Success = false,
Message = "Invalid content type"
});

var form = await request.ReadFormAsync();

if (form.Files.Any() == false)
return Results.Json(new ServerAckDash()
{
Success = false,
Message = "No file found"
});

var file = form.Files.FirstOrDefault();

if (file is null || file.Length == 0)
return Results.Json(new ServerAckDash()
{
Success = false,
Message = "No file found"
});

using var stream = file.OpenReadStream();

// read image data
byte[] data = new byte[file.Length];
await stream.ReadAsync(data, 0, (int)file.Length);

// save image to file
var fileName = file.FileName;
Log.Information("Image file name: {0}", fileName);

var storePath = Path.Combine(Directory.GetCurrentDirectory(), "wwwroot", "customImg");

if (!Directory.Exists(storePath))
{
Directory.CreateDirectory(storePath);
}

var filePath = Path.Combine(storePath, fileName);

Log.Information("Image will be write to {0}", filePath);

if (File.Exists(filePath))
{
File.Delete(filePath);
}

using var fileStream = new FileStream(filePath, FileMode.Create);
await fileStream.WriteAsync(data, 0, data.Length);
fileStream.Close();
return Results.Json(new ServerAckDash()
{
Success = true,
Message = "Image uploaded"
});
}).Accepts<IFormFile>("multipart/form-data");

前端

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
uploadImage(id) {
const formData = new FormData();
const fileInput = document.getElementById('bg-input');
const file = fileInput.files[0]; // 获取选中的文件
formData.append('file', file); // 将文件添加到FormData对象中
fetch('/api/upload-img/' + id, {
method: 'POST',
body: formData // 设置请求体为FormData对象
})
.then(response => response.json())
.then(data => {
if (data.success) {
Swal.fire({ title: 'Image uploaded!', text: data.message });
} else {
Swal.fire({ title: 'Image upload failed!', text: data.message });
}
})
.catch(error => console.error(error));
},

ASP.NET 最小 WebAPI 上传文件
https://taylorandtony.github.io/2025/01/26/asp-net-upload-file/
作者
TaylorAndTony
发布于
2025年1月26日
许可协议