我正在开发一个快递应用程序。
我的 server.js 目前有以下内容
process.on('uncaughtException', function (err) {
console.log( "UNCAUGHT EXCEPTION " );
console.log( "[Inside 'uncaughtException' event] " + err.stack || err.message );
});
每次出现错误时,它都会阻止服务器崩溃,但是,它只是坐在那里......
是否可以代替console.log 发送带有错误详细信息的500 错误页面?