-2

如果我有以下情况:

LogEntry.format_time(3600).should eql("01:00:00")

这该怎么做?

4

1 回答 1

2

在您的 LogEntry 模型中添加以下内容。

class LogEntry < ActiveRecord::Base
  #your properties and attributes
  def self.format_time(seconds)
    Time.at(seconds).utc.strftime("%H:%M:%S")
  end
end
于 2013-04-28T22:15:49.657 回答