可读流中的 ‘data’ 事件在 readable.pipe() 和 readable.resume() 被调用以将流切换到流动模式或通过向数据事件添加侦听器回调时发出。此事件也可以通过调用 readable.read() 方法并返回可用数据块来发出。
用法:
Event:'data'
下面的例子说明了 Node.js 中数据事件的使用:
范例1:
// Node.js program to demonstrate the
// readable data event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Instructions to read data
readable.on('readable', () => {
let chunk;
// Using while loop and calling
// read method
while (null !== (chunk = readable.read())) {
// Displaying the chunk
console.log(`read:${chunk}`);
}
});
// Handling the data event
readable.on('data', (chunk) => {
console.log(`chunk length is:${chunk.length}`);
});
console.log("Done...");
输出:
Done... chunk length is:13 read:GeeksforGeeks
范例2:
// Node.js program to demonstrate the
// readable data event
// Including fs module
const fs = require('fs');
// Constructing readable stream
const readable = fs.createReadStream("input.txt");
// Calling pause method
readable.pause();
// Handling the data event
readable.on('data', (chunk) => {
console.log(`chunk length is:${chunk.length}`);
});
console.log("Done...");
输出:
Done...
参考: https://nodejs.org/api/stream.html#stream_event_data。
相关用法
- Node.js Readable Stream readable事件用法及代码示例
- node.js Stream readable.readable用法及代码示例
- Node.js Readable Stream end事件用法及代码示例
- 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 data Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。