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的情况下实现吗?