我在记录上有一个datetime属性:
1.9.3p194 :024> f.last_contact
=> Thu, 11 Aug 2011 00:00:00 UTC +00:00
但是当我在控制台上尝试time_ago_in_words
时,它不起作用:
> time_ago_in_words(f.last_contact)
NoMethodError: undefined method `time_ago_in_words' for main:Object
我还尝试了distance_of_time_in_words
,文档说这应该与Time, Date & DateTime objects一起使用。
> to_time = Time.now
=> 2012-09-08 12:22:16 -0500
> distance_of_time_in_words(f.last_contact, to_time)
NoMethodError: undefined method `distance_of_time_in_words' for main:Object
这是什么原因? Rails控制台不应该为所有Rails方法加载所有必要的库和依赖项吗?
答案 0 :(得分:66)
您可以通过helper
对象
helper.time_ago_in_words(1.hour.ago)
=> "about 1 hour"
或导入所需的助手
include ActionView::Helpers::DateHelper
time_ago_in_words(1.hour.ago)
=> "about 1 hour"
答案 1 :(得分:7)
尝试
helper.time_ago_in_words(...)
helper.distance_of_time_in_words(...)
调用helper.
似乎可以让您访问任何/所有已定义的帮助程序。
此答案中的更多信息:How do I call controller/view methods from the console in Rails?
我认为,你不能直接调用帮助程序的原因是因为它们不在你所在的范围内(在控制台中),而不是在帮助程序所在的视图中运行的代码在范围内。