2013-10-29 90 views
0


我有這樣的事情希望顯示time_ago_in_words結果爲「天前」

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

'和輸出 - 10個月 ,但我想輸出爲 - 11個月前 任何建議將是有幫助的

回答

0

只需添加這

@something= @something.each_with_index do |c, i| 
@something[i]['created_at']=time_ago_in_words(Time.new(c['created_at']) + "ago." 
+0

感謝阿米特它的工作原理我做了一件怪事.. – Ron