jaredhanson / connect-flash

Flash message middleware for Connect and Express.
MIT License
1.24k stars 158 forks source link

Node.js req.flash issues #52

Open UgbeGodwinIkpe opened 3 years ago

UgbeGodwinIkpe commented 3 years ago

I'm having issues in returning messages with req.flash() I'm trying to return a string message to the view instead it's flashing 1. This is the short code: return res.render('index', { error_msg: req.flash('error_msg', 'Not found'), success_msg: '' })