点击用户的编辑个人资料链接时出现以下错误
ArgumentError in DeviseInvitable::RegistrationsController#edit
wrong number of arguments (1 for 0)
我的应用程序控制器如下所示:
def authenticate_user!
super
flash[:alert] = nil
end
我的路线看起来像这样
devise_for :users
ActiveAdmin.routes(self)
My Rake路线看起来像这样
edit_user_registration_path GET /users/edit(.:format) devise_invitable/registrations#edit
编辑网址看起来像这样
http://localhost:3000/users/edit
它应该有一些id来编辑。我做错了吗?