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個月前 任何建議將是有幫助的
我有這樣的事情希望顯示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個月前 任何建議將是有幫助的
只需添加這
@something= @something.each_with_index do |c, i|
@something[i]['created_at']=time_ago_in_words(Time.new(c['created_at']) + "ago."
感謝阿米特它的工作原理我做了一件怪事.. – Ron