在模型中使用 Rails 助手

发布于 2024-11-26 09:40:40 字数 377 浏览 1 评论 0原文

可能的重复:
访问 Rails 中模型的视图助手 < /p>

知道这可能不是我应该经常做的事情,但我想在模型中使用助手。

我正在报表模型中生成电子表格,并希望在 ActionView::Helpers::DateHelper 中使用 time_ago_in_words 方法,

这是否可行,或者我应该生成它在一个视图中?

Possible Duplicate:
Access a view helper for a model in rails

I know this is probably not something I should do often, but I want to use a helper within a model.

I'm generating a spreadsheet in a Report model and would like to use the time_ago_in_words method in ActionView::Helpers::DateHelper

Is this doable, or should I be generating it in a view?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

私藏温柔 2024-12-03 09:40:40

您只需将模块包含在模型中,然后像在视图中一样使用它

class Report
  include ActionView::Helpers::DateHelper
  ...
end

You can just include the module in the model, and use it like you would in a view

class Report
  include ActionView::Helpers::DateHelper
  ...
end
转角预定愛 2024-12-03 09:40:40
class Post < ActiveRecord::Base
  include ActionView::Helpers::DateHelper

  def my_test_method(a, include_seconds = false)
    time_ago_in_words(a, include_second)
  end

 end
class Post < ActiveRecord::Base
  include ActionView::Helpers::DateHelper

  def my_test_method(a, include_seconds = false)
    time_ago_in_words(a, include_second)
  end

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