可读流中的 ‘readable’ 事件在数据可用时发出,以便可以从流中读取它,或者可以通过为 ‘readable’ 事件添加一个侦听器来发出它,这将导致数据被读入内部缓冲区。
用法:
Event:'readable'
下面的例子说明了 Node.js 中可读事件的使用:
范例1:
// Node.js program to demonstrate the
// readable event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Handling readable event
readable.on('readable', () => {
let chunk;
// Using while loop and calling
// read method
while (null !== (chunk = readable.read())) {
// Displaying the chunk
console.log(`read:${chunk}`);
}
});
console.log("Done...");
输出:
Done... read:GeeksforGeeks
范例2:
// Node.js program to demonstrate the
// readable event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Handling readable event
readable.on('readable', () => {
console.log(`readable:${readable.read()}`);
});
// Handling end event
readable.on('end', () => {
console.log('Stream ended');
});
console.log("Done.");
输出:
Done. readable:GeeksforGeeks readable:null Stream ended
在这里,发出结束事件,因此返回 null。
参考: https://nodejs.org/api/stream.html#stream_event_readable
相关用法
- node.js Stream readable.readable用法及代码示例
- Node.js Readable Stream end事件用法及代码示例
- Node.js Readable Stream data事件用法及代码示例
- Node.js Readable Stream close事件用法及代码示例
- Node.js Readable Stream resume事件用法及代码示例
- Node.js Readable Stream pause事件用法及代码示例
- Node.js Readable Stream error事件用法及代码示例
- node.js Stream readable.pause()用法及代码示例
- node.js Stream readable.isPaused()用法及代码示例
- node.js Stream readable.destroyed用法及代码示例
- node.js Stream readable.destroy()用法及代码示例
- node.js Stream readable.read()用法及代码示例
- node.js Stream readable.readableEncoding用法及代码示例
- node.js Stream readable.readableEnded用法及代码示例
- node.js Stream readable.readableFlowing用法及代码示例
- node.js Stream readable.readableHighWaterMark用法及代码示例
- node.js Stream readable.readableLength用法及代码示例
- node.js Stream readable.readableObjectMode用法及代码示例
- node.js Stream readable.pipe()用法及代码示例
- node.js Stream readable.unpipe()用法及代码示例
- node.js Stream readable.setEncoding()用法及代码示例
- node.js Stream readable.resume()用法及代码示例
- node.js Stream readable.unshift()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Readable Stream readable Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。