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


Node.js zlib.brotliDecompressSync()用法及代码示例


zlib.brotliDecompressSync()方法是Zlib模块的内置应用程序编程接口,用于使用BrotliDecompress解压缩数据块。

用法:

zlib.brotliDecompressSync( buffer, options )

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



  • buffer:此参数保存类型为Buffer,TypedArray,DataView,ArrayBuffer,字符串的缓冲区。
  • options:此参数保存zlib选项的值。

返回值:它使用BrotliDecompress返回数据块。

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

范例1:

// Node.js program to demonstrate the      
// zlib.brotliDecompressSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "Nidhi"; 
  
// Calling brotliDecompressSync method 
var brotliCom = zlib.brotliCompressSync(input); 
var brotliDec = zlib.brotliDecompressSync( 
    new Buffer.from(brotliCom)).toString('hex'); 
  
console.log(brotliDec);

输出:

4e69646869

范例2:

// Node.js program to demonstrate the      
// zlib.brotliDecompressSync() method   
  
// Including zlib module 
var zlib = require('zlib'); 
  
// Declaring input and assigning 
// it a value string 
var input = "Nidhi"; 
  
// Calling brotliDecompressSync method 
var brotliCom = zlib.brotliCompressSync(input).toString('hex') 
var brotliDec = zlib.brotliDecompressSync( 
    new Buffer.from(brotliCom, 'hex')).toString('base64'); 
  
console.log(brotliDec);

输出:

TmlkaGk=

参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlidecompresssync_buffer_options




相关用法


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