Rails - Store a cookie in controller and get from Javascript, Jquery

 ̄綄美尐妖づ 提交于 2020-01-22 09:58:30

问题


Is it possible to store a User's Cookie or Session in Controller and Get the cookie by accessing it from JS or Jquery?


回答1:


Session values are available on the server.

You can set them like this in your controller:

session[:user_name] = @user.name

If you want to access that value later in javascript, you'll probably want to do something like this in a view:

<%= javascript_tag do %>
  var userName = '<%= session[:user_name %>';
<% end %>

Cookies are managed by the browser, so accessed differently.

To set one in your controller:

cookies[:user_name] = @user.name

(You can also specify the path, expiration, etc. for the cookie using options.)

It can then be accessed using jQuery:

var userName = jQuery.cookie("user_name");

Note: you can also access the cookie using pure javascript (not jQuery) by parsing document.cookie, but it is much easier to let jQuery do it for you (if you're already using that library).



来源:https://stackoverflow.com/questions/15351911/rails-store-a-cookie-in-controller-and-get-from-javascript-jquery

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!