이 방법으로 오류 응답 작성을 중앙 집중화하고 싶습니다.
app.get('/test', function(req, res){
throw {status: 500, message: 'detailed message'};
});
app.use(function (err, req, res, next) {
res.status(err.status || 500).json({status: err.status, message: err.message})
});
따라서 항상 동일한 오류 출력 형식이 있습니다.
추신 : 물론 다음 과 같이 표준 오류 를 확장 하는 객체를 만들 수 있습니다 .
const AppError = require('./lib/app-error');
app.get('/test', function(req, res){
throw new AppError('Detail Message', 500)
});
'use strict';
module.exports = function AppError(message, httpStatus) {
Error.captureStackTrace(this, this.constructor);
this.name = this.constructor.name;
this.message = message;
this.status = httpStatus;
};
require('util').inherits(module.exports, Error);