node.js中的console.trace方法使用说明
投稿:junjie
这篇文章主要介绍了node.js中的console.trace方法使用说明,本文介绍了console.trace的方法说明、语法、接收参数、使用实例和实现源码,需要的朋友可以参考下
方法说明:
向标准错误流输出当前的调用栈。
语法:
复制代码 代码如下:
console.trace(label)
接收参数:
label
例子:
复制代码 代码如下:
console.trace();
//运行结果:
Trace:
at Object.<anonymous> (/home/byvoid/consoletrace.js : 1: 71)
at Module._compile (module.js:441:26)
at Object..js (module.js:459:10)
at Module.load (module.js:348:31)
at Function._load (module.js:308:12)
at Array.0 (module.js:479:10)
at EventEmitter._tickCallback (node.js:192:40)
源码:
复制代码 代码如下:
Console.prototype.trace = function() {
// TODO probably can to do this better with V8's debug object once that is
// exposed.
var err = new Error;
err.name = 'Trace';
err.message = util.format.apply(this, arguments);
Error.captureStackTrace(err, arguments.callee);
this.error(err.stack);
};
您可能感兴趣的文章:
- Node.js API详解之 util模块用法实例分析
- Node.js API详解之 timer模块用法实例分析
- Node.js API详解之 os模块用法实例分析
- Node.js API详解之 querystring用法实例分析
- node.js中的console.log方法使用说明
- node.js中的console用法总结
- Node.js利用console输出日志文件的方法示例
- node.js中的console.info方法使用说明
- node.js中的console.error方法使用说明
- node.js中的console.warn方法使用说明
- Node.js console控制台简单用法分析
- Node.js API详解之 console模块用法详解