Bun

指南HTTP

使用 Bun 中的 fetch 发送 HTTP 请求

Bun 实现了用于发送 HTTP 请求的 Web 标准 fetch API。要向 URL 发送简单的 GET 请求

const response = await fetch("https://bun.net.cn");
const html = await response.text(); // HTML string

要向 API 端点发送 POST 请求。

const response = await fetch("https://bun.net.cn/api", {
  method: "POST",
  body: JSON.stringify({ message: "Hello from Bun!" }),
  headers: { "Content-Type": "application/json" },
});

const body = await response.json();