在重定向后使用res.render或发送变量,可以通过以下步骤实现:
const querystring = require('querystring');
const redirectUrl = '/redirect?' + querystring.stringify(data);
res.redirect(redirectUrl);
app.get('/redirect', (req, res) => {
res.locals.variable = req.query.variable;
res.render('template');
});
这样,你就可以在重定向后使用res.render或发送变量了。请注意,这只是一种实现方式,具体的实现可能因你使用的框架和模板引擎而有所不同。
领取专属 10元无门槛券
手把手带您无忧上云