金狮镖局 Design By www.egabc.com

方法说明:

向标准错误流输出当前的调用栈。

语法:

复制代码 代码如下:
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,console.trace方法

金狮镖局 Design By www.egabc.com
金狮镖局 免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
金狮镖局 Design By www.egabc.com

评论“node.js中的console.trace方法使用说明”

暂无node.js中的console.trace方法使用说明的评论...