我在 Sai 框架上使用 co 模块进行编码。
我想捕捉 InvalidError 但错误日志显示“未定义”。
如何修复此代码?
Co 模块无法捕获 ErrorType 规范??
detail: function (req, res) {
co(function *() {
let errors = [];
const text = req.param('text');
if (text.length <= 0) {
throw new InvalidError('text is required');
}
}).catch((InvalidError, err) => {
sails.log.warn(err);
errors.push(err.message);
req.flash('errors', errors);
res.redirect('/somewhere/view');
}).catch((Error, err) => {
sails.log.error(err);
res.serverError(err);
});
}
错误日志在这里
warn: undefined
error: undefined
error: Sending empty 500 ("Server Error") response