动作控制器:异常私有方法“sub”要求 nil:NilClass
我的应用程序现在只有最低限度的资源。我不知道为什么会收到此错误,但如果我查看日志文件,它会显示以下内容:-
ActionController::RoutingError(私有方法“sub”为 nil:NilClass 调用): 应用程序/控制器/application_controller.rb:1 应用程序/控制器/pages_controller.rb:1
我的应用程序控制器不包含任何内容(仅 protected_from_forgery),并且我的页面控制器目前几乎没有空操作。
这里有什么问题的指示吗?
更新
由于我刚刚开始该项目,我能够将其回滚并重新开始。但是我仍然不知道为什么会出现这个问题 谢谢,
I have got bare minimum in my app right now. I dont know why I am getting this error but if I look at log file it says this :-
ActionController::RoutingError (private method `sub' called for nil:NilClass):
app/controllers/application_controller.rb:1
app/controllers/pages_controller.rb:1
My application controller does not contain anything (only protect_from_forgery) and my pages controller has few empty action at this moment.
Any pointers of what going wrong here?
Update
Since I had just started the project I was able to roll it back and start over again. However I am still clueless why this problem occured
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仔细检查你的助手——定义的模块名称需要与助手的文件名匹配。
Doublecheck your helpers -- the module names being defined need to match the helper's filename.