gpt4 book ai didi

node.js - node.js 和 console.log 中的 connect-flash 之间的区别?

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

据我了解,两者都进行服务器打印输出。我尝试使用下面的 flash,但我只看到控制台打印输出。

app.get('/', function(req, res){
console.log('hi there!');
req.flash('info', 'flash test');
req.end();
});

闪光灯有什么用途以及我应该如何使用它?

最佳答案

向查看您网站的用户显示 Flash 消息。 console.log 显示在服务器运行的控制台上。

connect-flash是一个实现flash消息的中间件。当用户下次查看页面时,Flash 消息将显示在用户浏览器上。 Flash 通常与重定向结合使用,确保消息可用于要呈现的下一个页面。这就像上次查看的页面的提醒。

//go to /flash page
app.get('/flash', function(req, res){
req.flash('info', 'Hi there!')
res.redirect('/');
});
//info message shown when user sees / home page

关于node.js - node.js 和 console.log 中的 connect-flash 之间的区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15620860/

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