0


我有这样的东西

   `@something= @something.each_with_index do |c, i|
    @something[i]['created_at']=time_ago_in_words(Time.new(c['created_at'])    

` 并且输出为 - 10 个月,但我希望输出为 - 10 个月前的任何建议都会有所帮助

4

1 回答 1

0

只需添加这个

@something= @something.each_with_index do |c, i|
@something[i]['created_at']=time_ago_in_words(Time.new(c['created_at']) + "ago."
于 2013-10-29T07:33:55.467 回答