我正在使用我的rails3项目中的设计。登录后,我需要将用户重定向到不同的页面。没有覆盖会话控制器我该怎么做?
答案 0 :(得分:1)
问题看起来像是https://stackoverflow.com/a/12854498/790737
的副本尝试将其放入ApplicationController中:
def after_sign_in_path_for(resource)
different_page_path # this should be a path helper
end
我假设您知道如何使用路径和网址助手,并且您可以使用
rake routes
列出它们。祝你好运。