2013-03-13 183 views
0

我在我的rails3項目中使用devise。一旦登錄,我需要將用戶重定向到不同的頁面。如果沒有壓倒性會議控制器,我該怎麼做?設計重定向問題

回答

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 

列出它們。祝你好運。

+0

非常感謝:)今天我會試試看,並接受它Branderhost :) – 2013-03-13 14:45:26