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.
这不起作用:
redirect_to :back, :anchor => 'visitor-comments-container'
如何用锚重定向回来?
在您的应用程序控制器中,将请求 url 存储在会话哈希中,该哈希可用于多个后续请求
session[:return_to] ||= request.referer
然后您可以将此会话用于任何控制器操作,
redirect_to session[:return_to]