> ## Documentation Index
> Fetch the complete documentation index at: https://bun.ll1025.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# 将 Blob 转换为 ArrayBuffer

[`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) 类提供了多种以不同格式消费其内容的方法，包括 `.arrayBuffer()`。

```ts theme={null}
const blob = new Blob(["hello world"]);
const buf = await blob.arrayBuffer();
```

***

参见 [二进制数据](/runtime/binary-data#conversion)。
