3

我正在尝试在 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 获取 /multiple-flash,但控制台中的输出不显示“类型”。

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

我该如何解决?谢谢

4

1 回答 1

1

我希望它对那些遇到同样问题的人有所帮助。在路线“/”中将是:

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

相反,以前是错误的:

message: req.flash ('info')

只返回信息的闪光。

于 2012-10-26T22:05:30.163 回答