覆盖authenticate_user!在设计宝石中
我正在我的应用程序控制器中覆盖我的身份验证方法
def authenticate_worker!
if user_signed_in? && current_user.worker?
authenticate_user!
else
super
end
end
,我不断收到
wrong number of arguments (1 for 0)
app/controllers/application_controller.rb:51:in `authenticate_worker!'
消息,知道我缺少什么吗?谢谢!
I'm overwriting my authenticate method in my application controller
def authenticate_worker!
if user_signed_in? && current_user.worker?
authenticate_user!
else
super
end
end
I keep getting
wrong number of arguments (1 for 0)
app/controllers/application_controller.rb:51:in `authenticate_worker!'
Any idea what i'm missing? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了同样的问题并解决了这个问题:
所以,包装。复制并粘贴上面的代码,并在确定用户通过身份验证后将 flash[:alert] 替换为您想要执行的操作。
由于
opts
可选参数,会发生参数数量错误(1 for 0)
错误。I had the same problem and fixed it doing this:
So, wrapping. up, copy and paste the code above and substitute flash[:alert] with what you want to do after you are sure the user is authenticated.
The
wrong number of arguments (1 for 0)
error happens because of theopts
optional parameter.找到了。它正在传递
{:force=>true}
但不确定这个论点的作用是什么......
found it. It was passing
{:force=>true}
Not sure what that argument does though...