- 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.warn() 方法
Node.js console.warn() 方法会将警告消息作为输出打印到控制台上。它使用新行将输出打印到 stderr。提供给此方法的消息参数必须是字符串或可以使用 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
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