当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Process uncaughtException用法及代码示例


“ uncaughtException”是process模块​​中Process类的事件,当未捕获的JavaScript异常一直冒泡回到事件循环时,将发出该事件。

用法:

Event:'uncaughtException'

参数:此事件不接受任何参数作为参数。

返回值:此事件只返回回调函数以进行进一步的操作。



范例1:

index.js


// Node.js program to demonstrate the  
// Process 'uncaughtException' Event
  
// Importing the modules
const process = require('process');
var fs = require('fs');
  
// Independent Block which will execute
setTimeout(() => {
   console.log('\n')
   console.log('Greetings from GeeksforGeeks');
}, 1000);
  
// Event 'uncaughtException'
process.on('uncaughtException', (error, source) => {
   fs.writeSync(process.stderr.fd, error, source);
});
  
// Throwing an exception
nonexistentFunc();
  
console.log('This Block of code will not run');

使用以下命令运行index.js文件:

node index.js

输出:

ReferenceError:nonexistentFunc is not defined

Greetings from GeeksforGeeks

范例2:

index.js


// Node.js program to demonstrate the  
// Process 'uncaughtException' Event
  
// Importing the modules
const process = require('process');
var fs = require('fs');
  
// Event 'uncaughtException'
process.on('uncaughtException', (error) => {
   fs.writeSync(process.stderr.fd, error);
});
  
// Throwing our Error
throw new Error('Ran out of coffee')

使用以下命令运行index.js文件:

node index.js

输出:

Error:Ran out of coffee

参考: https://nodejs.org/dist/latest-v16.x/docs/api/process.html#process_event_uncaughtexception

相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js Process uncaughtException Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。