gpt4 book ai didi

node.js - 当我的代码中有错误时,如何从 Restify 获取堆栈跟踪?

转载 作者:太空宇宙 更新时间:2023-11-03 23:06:45 25 4
gpt4 key购买 nike

假设我定义了以下 Restify 端点:

server.get('/test/1', function (req, res, next) {
undefinedFunctionCall(); // Will cause exception
return next();
}

如何在服务器控制台中获取堆栈跟踪,告诉我 undefinedFunctionCall 未定义? 客户端得到它,但服务器得不到。

我读过the docs您可以监听事件 InternalServerErrorInternalError,但我测试时没有发生火灾。我必须做什么?

代码:

server.on('InternalServerError', function (req, res, err, cb) {
console.log('INTERNAL ERROR!'); // Never executed
return cb();
});

我在 Windows 10 的 Node 0.10.33 上运行 Restify 4.0.0

最佳答案

嗯,这似乎在 4.0.0 版本中发生了变化。我仍然使用 0.10 版本,堆栈跟踪会自动输出到服务器控制台。

但是,请尝试我从 this post 收集的解决方案。我试过了,它对我有用。

server.on('uncaughtException', function (req, res, err, cb) {
console.log(err);
return cb();
});

这与服务器崩溃并不完全相同,但至少您获得了堆栈跟踪。

关于node.js - 当我的代码中有错误时,如何从 Restify 获取堆栈跟踪?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32658657/

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