- Node.js 教程
- Node.js - 首页
- Node.js - 简介
- Node.js - 环境搭建
- Node.js - 第一个应用程序
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调函数概念
- Node.js - 上传文件
- Node.js - 发送邮件
- Node.js - 事件
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 进程
- Node.js - 应用程序扩展
- Node.js - 打包
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲区
- Node.js - 流
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 入门
- Node.js - MySQL 创建数据库
- Node.js - MySQL 创建表
- Node.js - MySQL 插入数据
- Node.js - MySQL 查询数据
- Node.js - MySQL 条件查询
- Node.js - MySQL 排序
- Node.js - MySQL 删除数据
- Node.js - MySQL 更新数据
- Node.js - MySQL 连接查询
- Node.js MongoDB
- Node.js - MongoDB 入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB 插入数据
- Node.js - MongoDB 查找数据
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB 删除数据
- Node.js - MongoDB 更新数据
- Node.js - MongoDB 数据限制
- Node.js - MongoDB 连接查询
- Node.js 模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - 实用程序模块
- Node.js - Web 模块
- Node.js 有用资源
- Node.js - 快速指南
- Node.js - 有用资源
- Node.js - 讨论
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
广告