Node.js ExpressJS FlashMessage Ajax

发布于 2024-11-05 07:14:41 字数 211 浏览 0 评论 0原文

我正在尝试从快捷应用程序获取一些闪现消息。

我的理解是,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酒解孤独 2024-11-12 07:14:41

你的理解就是我对快闪消息的理解。

我使用类似的东西:

在路线中:

req.flash('error', 'message to be flashed');

然后像下面这样的东西可以在视图中渲染。

- if(error.length){
  ul
  - error.forEach(function(err){
    li= err
  - })
- }

我还没有使用 Node+Ajax 创建一个单页网站,但希望这对一些人有帮助。

Your understanding is my understanding about Express flash messages.

I use something like:

In the route:

req.flash('error', 'message to be flashed');

And then something like below that can be rendered in a view.

- if(error.length){
  ul
  - error.forEach(function(err){
    li= err
  - })
- }

I've yet to make a one page site with Node+Ajax but hopefully this helped some.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文