Node.js zlib.brotliCompress() 方法
zlib.brotliCompress() 方法是 Zlib 模块的内置应用程序编程接口,用于压缩数据块。
句法:
zlib.brotliCompress( buffer, options, callback )
参数:此方法接受三个参数,如上所述,如下所述:
- buffer:可以是 Buffer、TypedArray、DataView、ArrayBuffer 和字符串类型。
- options:它是一个可选参数,包含 zlib 选项。
- 回调:它保存回调函数。
返回值:返回压缩后的数据块。
下面的例子说明了在 Node.js 中zlib.brotliCompress() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// brotliCompress() method
// Including zlib module
const zlib = require("zlib");
// Declaring input and assigning
// it a value string
var input = "Computer Science";
// Calling brotliCompress method
zlib.brotliCompress(input, (err, buffer) => {
console.log(buffer.toString('base64'));
});
输出:
Gw8A+CUAqhBDSpVv9iA=
示例 2:
// Node.js program to demonstrate the
// brotliCompress() method
// Including zlib module
const zlib = require("zlib");
// Declaring input and assigning
// it a value string
var input = "Computer Science";
// Calling brotliCompress method
zlib.brotliCompress(input, (err, buffer) => {
if(!err) {
console.log(buffer.toString('hex'));
}
else {
console.log(err);
}
});
输出:
1b0f00f82500aa10434a956ff620
参考: https://nodejs.org/api/zlib.html#zlib_zlib_brotlicompress_buffer_options_callback