node.js中的console.warn方法使用说明

方法说明:

该方法与 console.error() 相同。看源码就知道,console.error其实就是直接调用console.warn的

语法:

复制代码 代码如下:


console.warn([data], [...])

接收参数:

console.log接受若干个参数,如果只有一个参数,则输出这个参数的字符串形式。

如果有多个参数,则以类似于C语言printf()命令的格式输出。

如果没有参数,只打印一个换行符

例子:

复制代码 代码如下:


var count = 1234;
console.error('count: %d', count);

源码:

复制代码 代码如下:


Console.prototype.warn = function() {
this._stderr.write(util.format.apply(this, arguments) + '\n');
};

本文链接:https://my.lmcjl.com/post/7506.html

展开阅读全文

4 评论

留下您的评论.