# 在 Node 中如何读取可读流的内容
Issue
欢迎在 Gtihub Issue 中回答此问题: Issue 693 (opens new window)
Author
fs.createReadStream 吗,有人知道了踢我一下
Author
let data = "";
stream.on("data", (chunk) => (data += chunk));
stream.on("end", () => console.log(data));
Issue
欢迎在 Gtihub Issue 中回答此问题: Issue 693 (opens new window)
Author
fs.createReadStream 吗,有人知道了踢我一下
Author
let data = "";
stream.on("data", (chunk) => (data += chunk));
stream.on("end", () => console.log(data));