class ApplicationController < ActionController::Base before_filter :set_tracking_cookie def set_tracking_cookie cookies.permanent[:user_uuid] = SecureRandom.uuid unless cookies[:user_uuid] end end
这是正确的方法还是有更好的解决方案?
我在很多地方都使用过这样的结构,它就像魅力一样.如果您包含要通过此操作加载的内容(典型的跟踪像素),您甚至可以使其在外部登录页面上工作.