Rails 1.2.3 升级到 Rails 3.1.1 期间 Session_store 未定义方法
这里我将 Rails 1.2.3 应用程序迁移到 Rails 3.1.1。但我面临着一个奇怪的 session_store 问题。
ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_controller/railtie.rb:37:in ' 中的块(3 级):未定义的方法
session_store=' for ActionController::Base:Class (NoMethodError)
Here I migrate Rails 1.2.3 application into Rails 3.1.1. But I am facing a strange issue of session_store.
ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/action_controller/railtie.rb:37:in
block (3 levels) in <class:Railtie>': undefined method
session_store=' for ActionController::Base:Class (NoMethodError)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我遇到了同样的问题,这篇文章帮助我解决了它,
错误 NoMethodError : ActionView::Base:Class 的未定义方法 `debug_rjs='
...要修复错误,只需在您的环境文件、development.rb、product.rb 或staging.rb 之类的东西
并注释掉该行
希望这有帮助!
I had the same problem and this post helped me to fix it,
ERROR NoMethodError: undefined method `debug_rjs=' for ActionView::Base:Class
...to fix the error just search in your environment files, development.rb, production.rb or stagging.rb for something like
and comment out that line
hope this help!