1
我在我的項目中使用貓鼬和藍鳥。這個警告無處不在,即使我糾正了我的所有代碼。它仍然發生。藍鳥和貓鼬:警告:承諾是在處理程序中創建的,但沒有從它返回
exports.middleware = function (req, res, next, id) {
Account.findById(id).exec().then(function(account) {
if (!account) {
return res.status(404).send({
message: 'No account with that identifier has been found'
});
}
req.account = account;
next();
}).catch(function(err) {
return next(err);
});
};
這一警告已經更新3.4.3 – Esailija