Can store hash in a cookie?

前端 未结 3 2051
执笔经年
执笔经年 2021-02-20 10:38

Anyone know if I can put a hash in the cookie? Something like this: cookies [: test] = {: top => 5,: middle => 3,: bottom => 1}

Thanks

3条回答
  •  清歌不尽
    2021-02-20 11:14

    With Rails 4.1 I had to use the parentheses like this. Without that it gave an error.

    cookies[:test] = JSON.generate({a: 1, b: "2", hello: "world"})
    

提交回复
热议问题