• Node.js Video Tutorials

Node.js - Buffer.toJSON() 方法



NodeJS 的 Buffer.toJSON() 方法返回给定缓冲区的 JSON 对象。

语法

以下是 Node.JS Buffer.toJSON() 方法 的语法:

buf.toJSON()

参数

此方法没有任何参数。

返回值

方法 buffer.toJSON() 返回一个 json 对象。

示例

要创建缓冲区,我们将使用 NodeJS Buffer.from() 方法:

const buffer = Buffer.from('Hello');
console.log(buffer.toJSON());

缓冲区是用字符串“Hello”创建的。

输出

{ type: 'Buffer', data: [ 72, 101, 108, 108, 111 ] }

示例

在此示例中,缓冲区是用数字数组创建的。Buffer.toJSON() 的输出如下所示:

const buffer = Buffer.from([1,2,3,4,5,6,7,8,9,10]);
console.log(buffer.toJSON());

输出

{ type: 'Buffer', data: [
   1, 2, 3, 4,  5,
   6, 7, 8, 9, 10
] }

您也可以在创建的 Buffer 上使用 JSON.stringify() 方法。

const buffer = Buffer.from([1,2,3,4,5,6,7,8,9,10]);
console.log(JSON.stringify(buffer));

输出

{"type":"Buffer","data":[1,2,3,4,5,6,7,8,9,10]}

示例

在此示例中,我们将使用 Buffer.alloc() 并用一个值填充它。

const buffer = Buffer.alloc(10);
buffer.fill('H');
console.log(buffer.toJSON());

输出

{
   type: 'Buffer',
   data: [
      72, 72, 72, 72, 72,
      72, 72, 72, 72, 72
   ]
}
nodejs_buffer_module.htm
广告