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


Node.js Buffer buf.toJSON()用法及代码示例


buf.toJSON()

添加于:v0.9.2

返回 buf 的 JSON 表示。 JSON.stringify() 在对 Buffer 实例进行字符串化时隐式调用此函数。

Buffer.from() 接受从此方法返回的格式的对象。特别是,Buffer.from(buf.toJSON()) 的工作方式类似于 Buffer.from(buf)

import { Buffer } from 'node:buffer';

const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
const json = JSON.stringify(buf);

console.log(json);
// Prints: {"type":"Buffer","data":[1,2,3,4,5]}

const copy = JSON.parse(json, (key, value) => {
  return value && value.type === 'Buffer' ?
    Buffer.from(value) :
    value;
});

console.log(copy);
// Prints: <Buffer 01 02 03 04 05>const { Buffer } = require('node:buffer');

const buf = Buffer.from([0x1, 0x2, 0x3, 0x4, 0x5]);
const json = JSON.stringify(buf);

console.log(json);
// Prints: {"type":"Buffer","data":[1,2,3,4,5]}

const copy = JSON.parse(json, (key, value) => {
  return value && value.type === 'Buffer' ?
    Buffer.from(value) :
    value;
});

console.log(copy);
// Prints: <Buffer 01 02 03 04 05>

相关用法


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