如果您使用快速路由,鼓励重用和简单的可靠架构如下所示:
app.use(errorHandler); // errorHandler takes 4 arguments so express calls it with next(err)
app.get('/some/route.:format?', checkAssumptions, getData, sendResponse);
...其中 checkAssumptions、getData 和 sendResponse 只是示例 - 您可以根据应用程序的需要制作更长或更短的路由链。此类函数可能如下所示:
function checkAssumptions(req, res, next) {
if (!req.session.user) return next(new Error('must be logged in'));
return next();
}
function getData(req, res, next) {
someDB.getData(function(err, data) {
if (err) return next(err);
// now our view template automatically has this data, making this method reusable:
res.localData = data;
next();
});
}
function sendResponse(req, res, next) {
// send JSON if the user asked for the JSON version
if (req.params.format === 'json') return res.send(res.localData);
// otherwise render some HTML
res.render('some/template');
}