• Node.js Video Tutorials

NodeJS - console.info() 方法



Node.js 的 console.info() 方法用于将信息打印到 stdout(标准输出流)的新行中。它是 Console.log() 方法的别名。

使用这两种方法,我们可以将给定的消息打印到标准输出流(stdout),即终端或其他日志记录机制,例如文件或网络连接。它接受任意数量的参数,并以空格分隔打印它们,并在末尾添加换行符。

语法

以下是 Node.js console.info() 方法的语法:

console.info(data, …args);

参数

此方法将接受两个参数。下面描述了它们。

  • data − 此参数指定要打印到 console 的消息。

  • args − 这是一个可选参数,它保存将传递给 data 的替换值。

返回值

此方法不返回任何内容;相反,它将格式化后的信息打印到 stdout 的新行中,类似于 console.log() 方法。

示例

Node.js 的 console.info() 方法的工作方式类似于 console.log() 方法。此方法接受一个参数(data)。

在此示例中,我们仅使用 data 参数调用 console.info() 方法。

console.info("Welcome to tutorialspoint");
console.info("Simply Easy Learning at your fingertips");

输出

正如我们在输出中看到的,我们作为 data 参数传递的消息打印到控制台上的 stdout 的新行中。类似于 Node.js 的 console.log() 方法。

Welcome to tutorialspoint
Simply Easy Learning at your fingertips

示例

Node.js 的 console.info() 方法将接受一个可选参数(args)。

在此示例中,我们使用两个参数 dataargs 调用 console.info() 方法。我们将 string 值作为替换值传递。

console.info("Welcome to %s", "tutorialspoint");
console.info("Simply %s Learning at %s fingertips", "Easy", "your" );

输出

正如我们在输出中看到的,我们作为 data 参数传递的消息以及 args 参数中的替换值打印到控制台上的 stdout 的新行中。

Welcome to tutorialspoint
Simply Easy Learning at your fingertips

示例

在此示例中,我们使用两个参数 dataargs 调用 console.info() 方法。我们将 integer 值作为替换值传递。

console.info("One - %d Two - %d Three - %d", 1, 2, 3);
console.info("Numbers in above statement %d", 3);

输出

正如我们在输出中看到的,我们作为 data 参数传递的消息以及 args 参数中的 integer 替换值打印到控制台上的 stdout 的新行中。

One - 1 Two - 2 Three - 3
Numbers in above statement 3
nodejs_console_module.htm
广告