作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是关于boom的,它是Hapijs的插件
这是要引发错误的功能
const errorThrower = (msg = 'Internal Server Error', errorCode = 500) => {
const error = new Error(msg);
error.httpStatusCode = errorCode;
throw error;
};
try {
...
errorThrower('Invalid client id for partner', 404);
...
} catch (error) {
return boom.boomify(error,
{
statusCode: error.statusCode,
});
}
500 Internal Server Error
,而我希望Boom提供
404 Invalid client id for partner
。日志指示控制台上的错误,这显然意味着未捕获到该错误。
最佳答案
哦,很快。
因此,没有像error.statusCode
这样的内置属性,而是我在error.httpStatusCode
函数内部设置的errorThrower
。
这就是为什么boom
假设为500的原因,因为我没有提供有效的statusCode
(error.statusCode
未定义)。
要引用boom,
statusCode - the HTTP status code. Defaults to 500 if no status code is already set and err is not a Boom object.
return boom.boomify(error,
{
statusCode: error.statusCode,
});
关于javascript - 动臂-引发错误并以错误作为响应的差异,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51787243/
当我跑qemu-arm -L /usr/arm-linux-gnueabi/ ./foo在码头 Linux 4.9.125-linuxkit #1 SMP Fri Sep 7 08:20:28 UTC
我是一名优秀的程序员,十分优秀!