Bun

指南HTTP

使用 FormData 通过 HTTP 上传文件

要通过 Bun 使用 HTTP 上传文件,请使用 FormData API。我们从一个提供简单 HTML 网页表单的 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 http://localhost:${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>

此时,我们可以运行服务器并访问 localhost:4000 来查看我们的表单。

bun run index.ts
Listening on http://localhost:4000

我们的表单会将 POST 请求发送到 /action 端点,其中包含表单数据。让我们在服务器中处理该请求。

首先,我们在传入的 Request 上使用 .formData() 方法异步解析其内容为 FormData 实例。然后,我们可以使用 .get() 方法提取 nameprofilePicture 字段的值。此处 name 对应于一个 string,而 profilePicture 是一个 Blob

最后,我们使用 Bun.write()Blob 写入磁盘。

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",
        },
      });

    // parse formdata at /action
    if (url.pathname === '/action') {
      const formdata = await req.formData();
      const name = formdata.get('name');
      const profilePicture = formdata.get('profilePicture');
      if (!profilePicture) throw new Error('Must upload a profile picture.');
      // write profilePicture to disk
      await Bun.write('profilePicture.png', profilePicture);
      return new Response("Success");
    }

    return new Response("Not Found", { status: 404 });
  },
});