मैं इस तरह से त्रुटि प्रतिक्रिया के निर्माण को केंद्रीकृत करना चाहता हूं:
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);