我安装了设计,它工作正常,但登录重定向。当用户从应用程序的任何页面登录时,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'
这个问题的解决方案是什么?任何机构都可以在这方面提供帮助吗?