gpt4 book ai didi

node.js - 如何从内存中的字节创建readStream?

转载 作者:太空宇宙 更新时间:2023-11-04 01:55:32 25 4
gpt4 key购买 nike

我遇到的所有流创建示例都是以文件为中心的。我正在使用一个接口(interface),需要我将读取流传输到写入流。我的输入是内存中的原始字节,而不是文件。

https://nodejs.org/api/fs.html#fs_fs_createreadstream_path_options

如何通过传入“原始字节”而不是文件描述符来完成^^^?

最佳答案

这就是我的工作(来自 How to create streams from string in Node.Js? ):

streamFromString(raw) {
const Readable = require('stream').Readable;
const s = new Readable();
s._read = function noop() {};
s.push(raw);
s.push(null);
return s;
}

关于node.js - 如何从内存中的字节创建readStream?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48120790/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com