将此静态页面控制器代码更新为较新的 Rails 版本

发布于 2024-08-22 02:59:50 字数 381 浏览 2 评论 0原文

我一直在尝试使用这里的代码:

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 技术交流群。

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

发布评论

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

评论(1

千寻… 2024-08-29 02:59:50

从 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.

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