要使用 Bun 通过 HTTP 上传文件,请使用 FormData
API。让我们从一个提供简单 HTML Web 表单的 HTTP 服务器开始。
index.ts
const server = Bun.serve({
port: 4000,
async fetch(req) {
const url = new URL(req.url);
// return index.html for root path
if (url.pathname === "/")
return new Response(Bun.file("index.html"), {
headers: {
"Content-Type": "text/html",
},
});
return new Response("Not Found", { status: 404 });
},
});
console.log(`Listening on https://127.0.0.1:${server.port}`);
我们可以在另一个文件 index.html
中定义我们的 HTML 表单。
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Form</title>
</head>
<body>
<form action="/action" method="post" enctype="multipart/form-data">
<input type="text" name="name" placeholder="Name" />
<input type="file" name="profilePicture" />
<input type="submit" value="Submit" />
</form>
</body>
</html>