gpt4 book ai didi

node.js - 我们可以在 Node 中使用重定向发送数据吗

转载 作者:太空宇宙 更新时间:2023-11-03 23:08:54 25 4
gpt4 key购买 nike

我正在尝试使用重定向发送数据:

this.redirect("/home",{message:'hello'});

但我得到的结果是这样的:

undefined redirect to home

如果有人遇到此问题,请提供帮助。

使用框架:机车

最佳答案

是的,您可以使用express-flash :

app.use(flash());
...

app.get('/redirect', function (req, res) {
req.flash('info', 'Flash Message Added');
res.redirect('/');
});

您的数据可以在 res.locals.messages 中访问,因此在您的 View 中只需在 messages var 中。

express flash 基于 connect flash。它使用 session 来传输消息。

如果您使用机车

Locomotive builds on Express, preserving the power and simplicity you've come to expect from Node.

所以:

module.exports = function() {

...
this.use(express.bodyParser());
this.use(express.session({ secret: 'keyboard cat' }));
this.use(flash());
...
}

关于node.js - 我们可以在 Node 中使用重定向发送数据吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24302888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com