Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个基于 Rails 平台的 Web 应用程序,并使用 heroku 进行部署。每当有新部署时,用户都会被注销。部署后有没有办法让用户保持登录状态?
应用程序使用 facebook 登录供用户登录。
你有没有在你的application controller
application controller
def current_user if cookies[:remember_token].present? @current_user ||= User.find_by_remember_token(cookies[:remember_token]) end end