Как изменить формат create_at с помощью javaScript Rails

You can override the created_at on the corresponding model

class Model < ActiveRecord::Base
  def created_at
    attributes['created_at'].strftime("%m/%d/%Y %H:%M")
  end
end
Thoughtful Tarsier