- 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 - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
NodeJS - console.debug() 方法
Node.js console.debug() 函数用于将信息打印到新行的 stdout。它的工作原理与 node.js 的 console.log() 方法相同。这对于故障排除或理解特定代码段的工作方式非常有用。现在让我们看一下 console.debug() 方法的语法。
node.js 的 console.debug() Node.js是 Console 类的内置方法。
语法
以下是Node.js console.debug()方法的语法 -
console.debug(data, args);
参数
此方法接受两个参数。下面将对此进行描述。
- data − 此参数指定在屏幕上打印的信息。
- args - 这是一个可选参数,其中args在传递给数据的信息中作为替换值传递。这些参数可以通过格式说明符来访问。
返回值
此方法不会返回任何内容;相反,它将格式化的信息打印到类似于 console.log() 方法的新行中。
例Node.js console.debug() 方法的工作方式类似于 Node.js console.log() 方法。此方法接受一个参数(数据)。
在此示例中,我们仅使用数据参数调用 console.debug() 方法。
const console = require('console');
console.debug('qikepu');
console.debug('Simply Easy Learning at your fingertips...');
输出
正如我们在输出中看到的,我们作为数据参数传递的消息被打印到新行的 stdout 中。类似于 node.js 的 console.log() 方法。
qikepu
Simply Easy Learning at your fingertips...
Simply Easy Learning at your fingertips...
例
node.js 的 console.debug() 方法将接受可选参数 (args)。
在此示例中,我们使用两个参数 data 和 args 调用 console.debug() 方法。
const console = require('console');
console.debug('There are %d pancakes in the refrigerator, 4);
console.debug('%s is having a %d pack body', "Nik", 6);
输出
home/cg/root/63a00e1fdca8a/main.js:3
console.debug('There are %d pancakes in the refrigerator, 4);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Invalid or unexpected token
at new Script (vm.js:74:7)
at createScript (vm.js:246:10)
at Object.runInThisContext (vm.js:298:10)
at Module._compile (internal/modules/cjs/loader.js:670:28)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
at Module.load (internal/modules/cjs/loader.js:612:32)
at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
at Function.Module._load (internal/modules/cjs/loader.js:543:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:744:10)
at startup (internal/bootstrap/node.js:238:19)
console.debug('There are %d pancakes in the refrigerator, 4);
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Invalid or unexpected token
at new Script (vm.js:74:7)
at createScript (vm.js:246:10)
at Object.runInThisContext (vm.js:298:10)
at Module._compile (internal/modules/cjs/loader.js:670:28)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
at Module.load (internal/modules/cjs/loader.js:612:32)
at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
at Function.Module._load (internal/modules/cjs/loader.js:543:3)
at Function.Module.runMain (internal/modules/cjs/loader.js:744:10)
at startup (internal/bootstrap/node.js:238:19)
注意: 为了获得准确的结果,最好在本地执行上述代码。
正如我们在输出中看到的,我们作为数据参数传递的消息以及在 args 参数中传递的一些替换值被打印到换行符中的 stdout。
There are 4 pancakes in the refrigerator
Nik is having a 6 pack body
Nik is having a 6 pack body