将此静态页面控制器代码更新为较新的 Rails 版本
我一直在尝试使用这里的代码:
http ://snafu.diarrea.ch/blog/article/4-serving-static-content-with-rails
但我收到如下错误:
undefined method `template_exists?' for #<StaticController:0xb74cbe4c>
如何将此方法更新到 Rails 2.5?可能还有其他已弃用的东西。
I've been trying to use the code here:
http://snafu.diarrhea.ch/blog/article/4-serving-static-content-with-rails
but I'm getting errors like:
undefined method `template_exists?' for #<StaticController:0xb74cbe4c>
How can I update this method to Rails 2.5? Probably there are other deprecated things too.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从 Rails 2.2.1 开始,方法调用 template_exists? 已被弃用(请参阅:Rails APIdock)
原作者在下面的文章 文章。基本上需要将方法添加到从 ApplicationController 派生的 StaticController 中,从而给出该方法。
The method call template_exists? is deprecated as of Rails 2.2.1 (see: Rails APIdock)
A little bit of digging revealed the solution, by the original author, in the following article article. Basically requires adding the method into the StaticController, derived from ApplicationController and thus gives the method.