Rails 1.2.3 升级到 Rails 3.1.1 期间 Session_store 未定义方法

发布于 2024-12-09 19:54:08 字数 317 浏览 0 评论 0原文

这里我将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

勿忘初心 2024-12-16 19:54:08

我遇到了同样的问题,这篇文章帮助我解决了它,

错误 NoMethodError : ActionView::Base:Class 的未定义方法 `debug_rjs='

...要修复错误,只需在您的环境文件、development.rb、product.rb 或staging.rb 之类的东西

config.session_store=

并注释掉该行

# config.session_store=

希望这有帮助!

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

config.session_store=

and comment out that line

# config.session_store=

hope this help!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文