在app.js里用
app.use(function (req, res, next) { res.locals.error= req.flash(‘error’).length ? req.flash(‘error’) : null; next(); });
前端(如template.ejs)文件调用时用
<% if(locals.error) { %>
不会输出任何东西
原因是req.flash(‘error’)执行一次就会消失。 所以在执行过req.flash(‘error’).length这句话后req.flash(‘error’)的内容已经消失就不会赋值给res.locals.error,在前端也就不会显示。
解决办法是先把req.flash(‘error’)用变量存下来
app.use(function (req, res, next) { //req.flash(‘error’);只执行一次,随后消失,所以要先保存进变量 var err = req.flash(‘error’); res.locals.error = err.length ? err : null; next(); });
谢谢分享~
如果有用session的话,flash里的内容默认是存到session里,也就是说
res.locals.error = req.session? req.session.error : null
这里有答案 http://www.cnblogs.com/meteoric_cry/archive/2012/07/27/2604890.html 注意上述的代码,app.use(flash());要放在session之前