我的应用程序中有一个 viewController 文件,我将在其中将变量传递到应用程序的前端。但是,我需要在每个页面中添加某些变量。有没有办法将变量传递到每个页面,而不是一遍又一遍地重复我的代码?
在下面的示例中,我定义了cruiseLinesfor exports.getIndex。exports.aboutUs但我在和中有完全相同的代码exports.shipDetails,依此类推。任何帮助,将不胜感激。谢谢你!
exports.getIndex = async (req, res, next) => {
// 1) Get tour data from Collection
const ships = await Ship.find().sort({ shipName: 1 });
const cruiseLines = await Ship.distinct('cruiseLine');
const reviewCount = await Review.countDocuments();
// 2) Build template
// 3) Render the template from the tour data from step 1
res.status(200).render('main', {
title: 'Welcome',
ships,
reviewCount,
cruiseLines,
});
};
30秒到达战场
相关分类