Node.js console.profileEnd() 方法
控制台模块提供了一个简单的调试控制台,由导出两个特定组件的 Web 浏览器提供:
- 控制台类可用于写入任何 Node.js 流。示例: console.log()、console.error()等。
- 无需导入控制台即可使用全局控制台。示例: process.stdout、process.stderr等。
console.profileEnd() (在 v8.0.0 中添加)方法是“控制台”模块的内置应用程序编程接口,除非在检查器中使用,否则不会显示任何内容。如果已经启动了一个 JavaScript CPU 分析会话,它实际上会停止当前的 JavaScript CPU 分析会话,并将报告打印到检查器的 Profiles 面板,如果在没有标签的情况下调用此方法,则停止最近启动的配置文件。
注意:全局控制台方法既不是始终同步也不是始终异步。
句法:
console.profileEnd([label])
参数:此函数接受如上所述和如下所述的单个参数:
- label < 字符串 > :它接受将在检查器中进一步使用的标签名称。
返回值:它不会在控制台中打印任何内容,而是在 Inspector 中完成/结束 JavaScript CPU 配置文件。
下面的示例说明了在 Node.js 中使用console.profileEnd()方法。
示例 1:文件名:index.js
// Node.js program to demonstrate the
// console.profileEnd() Method
// Starting MyLabel console profile
console.profile('MyLabel');
// Doing some task
for (var i = 0; i < 4; i++) {
// Printing some task
console.log('Doing task no:', i);
}
// Finishing MyLabel profile
console.profileEnd('MyLabel');
使用以下命令运行index.js文件:
node index.js
控制台中的输出:
Doing task no: 0
Doing task no: 1
Doing task no: 2
Doing task no: 3
检查器中的输出:
示例 2:文件名:index.js
// Node.js program to demonstrate the
// console.profileEnd() Method
// New profile function
function newProfile(callback) {
try{
// Do some task
for(var i = 1; i < 4; i++) {
console.log('Working on task:', i);
callback();
}
} catch {
// Prints if there is error
console.error('error occured');
}
}
// Starting newProfile() console profile
console.profile("newProfile()");
// Calling newprofile()
newProfile(function alfa() {
// Finishing profile
console.profileEnd();
});
使用以下命令运行index.js文件:
node index.js
控制台中的输出:
Working on task: 1
Working on task: 2
Working on task: 3
检查器中的输出:
参考:https://nodejs.org/api/console.html#console_console_profileend_label