开发者

What's best way to make rails flash entries persist until the next action?

开发者 https://www.devze.com 2023-01-14 16:06 出处:网络
I\'ve put some code like this flash[:task_loader] = flash[:task_loader] flash[:task_loader_params] = flash[:task_loader_params]

I've put some code like this

flash[:task_loader] = flash[:task_loader]
flash[:task_loader_params] = flash[:task_loader_params]

in a function in my controller which all my actions can call. This has the effect of keeping those two flash entries in the FlashHash开发者_如何学Go. (I presume this rather odd-looking code works because the '=' does more than just assign values.)

My question is, is there a better way to do this? Something like

flash[:task_loader].pin


Flash is a convenient wrapper for storing data in cookies and expiring them in the next request. So that your notification messages will work through 2 (or multiple) request response cycles.

If you want some more persistence, you can use session:

session[:task_loader] = my_task_loader

Note that one cookie can hold only 4KB of data.

(I presume odd-looking code works because the '=' does more than just assign values.)

This is because it is not simply an assignment, but a method []=, with a signature similar to this:

def []=(k, v)
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号