// 將資料存入 flash app.get('/flash', function(req, res){ // Set a flash message by passing the key, followed by the value, to req.flash(). req.flash('info', 'Flash is back!') res.redirect('/'); });
// 將 flash 的資料渲染到頁面上 app.get('/', function(req, res){ // Get an array of flash messages by passing the key to req.flash() res.render('index', { messages: req.flash('info') }); });