当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


node.js Stream writable.write()用法及代码示例


writable.write()方法是Stream模块的内置应用程序编程接口,用于将一些数据写入Writable流。数据处理完毕后,将调用回调函数。

用法:

writable.write( chunk, encoding, callback)

参数:此方法接受上述和以下所述的三个参数:


  • chunk:它是要写入的可选数据。块的值必须是字符串,缓冲区或Uint8Array。对于对象模式,块值可以是null以外的任何值。
  • encoding:如果块是字符串值,它将保存编码值。
  • callback:它是流的可选回调函数。

返回值:如果在此方法返回true之前发出了'drain'事件,则返回false。

以下示例说明了Node.js中writable.write()方法的使用:

范例1:

// Node.js program to demonstrate the      
// writable.write() method   
  
// Including stream module 
const stream = require('stream'); 
  
// Creating a stream and creating  
// a write function 
const writable = new stream.Writable({ 
  
  // Write function with its  
  // parameters 
  write:function(chunk, encoding, next) { 
  
    // Converting the chunk of 
    // data to string 
    console.log(chunk.toString()); 
    next(); 
  } 
}); 
  
// Calling write method with 
// all its parameter 
writable.write("GfG", "utf8", () => { 
     console.log("CS-Portal!"); 
});

输出:

GfG
true
CS-Portal!

范例2:

// Node.js program to demonstrate the      
// writable.write() method   
  
// Including stream module 
const stream = require('stream'); 
  
// Creating a stream and creating  
// a write function 
const writable = new stream.Writable({ 
  
  // Write function with its  
  // parameters 
  write:function(chunk, encoding, next) { 
  
    // Converting the chunk of 
    // data to string 
    console.log(chunk.toString()); 
    next(); 
  } 
}); 
  
// Calling write method with one 
// parameter 
writable.write('GeeksforGeeks');

输出:

GeeksforGeeks
true

参考: https://nodejs.org/api/stream.html#stream_writable_write_chunk_encoding_callback



相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Node.js | Stream writable.write() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。