是否有可能在body-parser
中捕获不良的JSON语法?
以下代码显示了我的尝试。问题是当我得到响应时,我无法访问任何err.status
:
这作为HTML页面带到调用者。我宁愿捕获该错误并格式化一个不错的JSON作为响应。
代码尝试:
class ExampleServer extends Server {
constructor() {
...
this.app.use(bodyParser.json());
this.app.use(bodyParser.urlencoded({extended: true}));
this.app.use((err) => {
if (err instanceof SyntaxError && err.status === 400 && 'body' in err) {
Logger.Err('Bad JSON.');
}
});
...
}
}
我通过POST正文发送的损坏的JSON:
{
"numberValue": 6,
"requiredValue": "some string here"]
}
我使用的
body-parser
和express
版本:"body-parser": "^1.19.0",
"express": "^4.17.1",
如何捕获破损的JSON错误?
最佳答案
是的,可以指示Express捕获错误的JSON语法。尝试修改以下代码:
this.app.use((error: any, req: any, res: any, next: any) => {
if (error instanceof SyntaxError) {
// Catch bad JSON.
res.sendStatus(400);
} else {
next();
}
});
关于node.js - 正文解析器捕获错误的JSON,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/59222469/