gpt4 book ai didi

node.js - NodeJS - app.use(function(err, req, res, next){}) 和 process.on ('uncaughtException' , function(err){}) 之间的区别

转载 作者:行者123 更新时间:2023-12-03 08:29:54 26 4
gpt4 key购买 nike

我正在尝试在我的 Node 项目上创建一个错误处理程序,但我不明白一些事情。

对于抛出的错误,我可以从 2 种不同的方式中捕获:

进程.on()

process.on('uncaughtException', function(err) {
// Nothing to do... Client request can't be closed
});

app.use()
app.use(function(err, req, res, next) {
res.send("Humm... To bad !", 500);
});

我正在使用带有这样的 RESTful API 的函数:
app.use(function(req, res, next) {
// throw new Error("This error is caught by app.use()");
api.getData(function(err, result) {
if (err) {
// throw new Error("This error is caught by process.on()");
}
/* Some code here */
});
});

我真的不明白两者之间有什么区别。而且我不喜欢 process.on() 方式,在这个问题上,我无法访问 req 和 res 来向客户端发送 500 错误页面。 .

最佳答案

process.on() 将处理进程中的任何未捕获错误,因为 app.use 是处理请求处理错误的正确方法。您还可以通过调用 next(err) 定义多个此类处理程序并链接在一起

关于node.js - NodeJS - app.use(function(err, req, res, next){}) 和 process.on ('uncaughtException' , function(err){}) 之间的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28748430/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com