> ## 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 转换为 ReadableStream

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

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

***

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