我正在使用node-fetch从一个 API 调用另一个 API,但是当“API 2”中发生错误时,成功回调运行。
我不确定这是否是预期的行为,以及您是否应该检查状态代码的响应而不是让catch
回调运行。
接口 1:
fetch('http://localhost:4060/api/passwords', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
userId: doc._id,
hash: hash
})
})
.then((response) => {
console.log(response);
return res.json(doc);
})
.catch((e) => {
console.log('ERROR')
next(e);
});
API 2:
app.use((err, req, res, next) => {
res.status(err.status).json({
message: err.isPublic ? err.message : httpStatus[err.status],
stack: config.env === 'development' ? err.stack : {}
});
});
当“API 2”出现错误时,响应如下所示:
Response {
size: 0,
timeout: 0,
[Symbol(Body internals)]:
{ body:
PassThrough {
_readableState: [Object],
readable: true,
domain: null,
_events: [Object],
_eventsCount: 3,
_maxListeners: undefined,
_writableState: [Object],
writable: false,
allowHalfOpen: true,
_transformState: [Object] },
disturbed: false,
error: null },
[Symbol(Response internals)]:
{ url: 'http://localhost:4060/api/passwords',
status: 400,
statusText: 'Bad Request',
headers: Headers { [Symbol(map)]: [Object] },
counter: 0 } }
如您所见,出现错误,API 2 的代码段运行,返回带有400
状态代码的错误。
如上所述,这是预期的行为吗?我的印象是catch
应该运行而不是运行then
,有什么办法可以调整我的代码以实现这一点?