当该页面需要登录时,我在重定向到上次访问的页面时遇到问题,并且有人指出您可以在此处遵循代码示例:https : //github.com/plataformatec/devise/wiki/How -To%3A-redirect-to-a-specific-page-on-successful-sign-in
该示例调用stored_location_for(resource)
...该集合在哪里?
before_filter :authenticate_user!
该示例与我适当的控制器中的 a 结合使用时效果很好。查看源代码authenticate_#{resource}!
,https://github.com/plataformatec/devise/blob/master/lib/devise/controllers/helpers.rb它似乎没有保存位置。
以前的位置存储在世界的哪个位置?