在模型中使用 Rails 助手
可能的重复:
访问 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您只需将模块包含在模型中,然后像在视图中一样使用它
You can just include the module in the model, and use it like you would in a view