Connect-Flash和Express为我提供了多条消息,但没有输入

时间:2012-10-26 18:49:18

标签: node.js coffeescript express pug flash-message

我试图在Connect-Flash - Express中询问一个类型的多重闪存消息并给我多个字符串消息但不是“类型”

在路线:

  app.get '/multiple-flash', (req, res) ->
    req.flash "info", ["Welcome", "Benvenuto"]
    res.redirect '/'

在客户端:

doctype 5
html
  head
    title= 'Login'

  body
    p layout

      if message 
        p= message

    -console.log(message)

在localhost处获取GET / multiple-flash,但控制台中的输出不显示“type”。

GET /multiple-flash 302 1ms - 90
[ [ 'Welcome', 'Benvenuto', ] ]

我该如何解决?感谢

1 个答案:

答案 0 :(得分:1)

我希望那些遇到同样问题的人会有所帮助。 在路线'/'将是:

  app.get '/', (req, res) -> 
    res.render '', 
      message: req.flash() 

以前错了:

message: req.flash ('info')

只返回信息的闪烁。