我安裝了設計,它工作正常,但重定向登錄。當用戶從應用程序的任何頁面登錄時,Devise會將用戶重定向到首頁,而不是在同一頁面上重定向。我試着實現設計的How_to解決方案,但沒有任何幫助。登錄重定向到首頁,而不是停留在同一頁
我application_controller寫道:
def after_sign_in_path_for(resource)
current_user_path
end
但它給錯誤:
undefined local variable or method `current_user_path' for #<Devise::SessionsController:0xaeacc34>
當我寫:
def after_sign_in_path_for(resource)
current_user_path
end
它提供:
undefined method `user_url'
這個問題的解決方案是什麼?任何身體都可以幫助嗎?
爲好,它重定向到主頁。我需要用戶留在他以前的同一頁面上。 – user2206724 2013-03-28 08:50:50