如何动态设置会话域?

时间:2013-12-06 21:44:35

标签: ruby-on-rails

Rails中是否有办法设置特定于域的会话而无需手动声明action_controller.session[:domain]

例如:

class SomeController
  def login
    session[:logged_in] = true #this goes to the default domain: app.com

    session[:user_id] = @user.id #this goes to: customerA.app.com
  end
end

这可以在没有常规cookie的情况下实现吗?

0 个答案:

没有答案