- 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 - 讨论
NodeJS - console.warn() 方法
Node.js 的 console.warn() 方法会将警告消息作为输出打印到 控制台。它将输出打印到 stderr,并添加换行符。此方法提供的 message 参数必须是字符串,或者是可以使用 util.inspect() 函数转换为字符串的对象,才能正常工作。它与 node.js 的 console.error() 方法非常相似。此方法在日常网页中很有用,可以显示控制台上的错误消息。
语法
以下是 Node.js console.warn() 方法的语法:
console.warn( [data][, ...args] )
参数
此方法接受多个参数,如下所述。
在 data 参数中,我们传递应显示在控制台上的消息。
第二个参数 args 是我们传递到 data 参数中的消息的替换值。
返回值
此函数将在控制台上返回一条警告消息,其中包含我们传递给它的参数。
示例
在下面的示例中,我们将消息传递到方法的 data 参数中。
console.warn("This is an error statement");
输出
正如我们在输出中看到的,Node.js console.warn() 方法打印了包含传递到控制台的消息的错误。
This is an error statement
示例
在下面的示例中,我们正在运行一个循环,在循环内部,我们使用 data 参数调用 console.warn() 方法。
for(i = 1; i <= 10; i++) { console.warn("This is error statement: " + i); }
输出
正如我们在输出中看到的,对于每次迭代,我们都会收到包含我们传递给函数的消息的警告。
This is error statement: 1 This is error statement: 2 This is error statement: 3 This is error statement: 4 This is error statement: 5 This is error statement: 6 This is error statement: 7 This is error statement: 8 This is error statement: 9 This is error statement: 10
示例
在下面的示例中,
我们声明了两个整型变量,并对它们执行乘法和减法运算。
然后,我们使用 'if' 语句,如果条件满足,则执行 console.warn() 方法。
var a = 10; var b = 15; var c = a * b; var d = b - a; if (c > d){ console.warn( c + " is %s than " + d, 'greater'); }
输出
正如我们在下面的输出中看到的,条件满足,并且执行了 console.warn() 方法。
150 is greater than 5
nodejs_console_module.htm
广告