Format date time in find operation in Rails 3

前端 未结 6 1781
情话喂你
情话喂你 2021-01-28 15:34

I\'m looking for a way to format date time in find(:all) so that when I render my results in JSON, the date time will look like

\"March 20, 2011\"

instead of

6条回答
  •  感情败类
    2021-01-28 16:10

    Off the top of my head, you could do something like:

    @posts = Post.all
    @posts.all.each do |x|
      x.date = x.date.strftime("%b %d, %Y")
    end
    @posts.to_json
    

提交回复
热议问题