0

我在我的 rails3 项目中使用设计。登录后,我需要将用户重定向到不同的页面。如果没有覆盖会话控制器,我该怎么做?

4

1 回答 1

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

我假设您知道如何使用路径和 url 助手,并且您可以使用

rake routes

列出它们。祝你好运。

于 2013-03-13T14:42:22.857 回答