我正在尝试在 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', ] ]
我该如何解决?谢谢