“ 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
相关用法
- Node.js process.nextTick()用法及代码示例
- jQuery UI dialog create(event, ui)用法及代码示例
- jQuery UI dialog close(event, ui)用法及代码示例
- jQuery UI dialog resizeStart(event, ui)用法及代码示例
- jQuery UI dialog dragStop(event, ui)用法及代码示例
- jQuery UI dialog dragStart(event, ui)用法及代码示例
- jQuery UI dialog resize(event,ui)用法及代码示例
- jQuery UI dialog open(event,ui)用法及代码示例
- jQuery UI dialog focus(event,ui)用法及代码示例
- Node.js Process exit用法及代码示例
- Node.js Process message用法及代码示例
- Node.js Process beforeExit用法及代码示例
- Node.js Process warning用法及代码示例
- Node.js Process multipleResolves用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js Process uncaughtException Event。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。