Node.js ExpressJS FlashMessage Ajax
我正在尝试从快捷应用程序获取一些闪现消息。
我的理解是,express中的flash消息(例如:req.flash('info',message))存储在服务器上,只有在下一个请求时才将其加载到视图中?
因此,如果我有一个单页 ajax 网站,我是否应该不使用内置的 flash 方法而只使用 send,或者我应该做其他事情,例如向视图发出另一个请求?
谢谢。
I'm trying to get some flashmessages from an express app.
My understanding is that flash messages in express (eg: req.flash('info',message)) are stored on the server, and only upon next request is it loaded into the view?
So if I have a one page ajax website, should I not use the built in flash method and instead just use send, or should I do something else, like making another request to a view?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的理解就是我对快闪消息的理解。
我使用类似的东西:
在路线中:
然后像下面这样的东西可以在视图中渲染。
我还没有使用 Node+Ajax 创建一个单页网站,但希望这对一些人有帮助。
Your understanding is my understanding about Express flash messages.
I use something like:
In the route:
And then something like below that can be rendered in a view.
I've yet to make a one page site with Node+Ajax but hopefully this helped some.