I have a datetime column in db that I want to transform into a simple date when I show it to users.
How can I do that?
def shown_date # to_date does not exist, but is what I am looking for self.date || self.exif_date_time_original.to_date end
|
I have a datetime column in db that I want to transform into a simple date when I show it to users. How can I do that? def shown_date # to_date does not exist, but is what I am looking for self.date || self.exif_date_time_original.to_date end |
|||||||
|
|
|
|||||||||||||
|
|
Hello collimarco :) you can use ruby strftime method to create ur own date/time display. time.strftime( string ) => string
|
|||
|
|
|
I think in Ruby 1.9.2 and above they added a .to_date function to DateTime: http://ruby-doc.org/stdlib-1.9.2/libdoc/date/rdoc/DateTime.html#method-i-to_date This instance method doesn't appear to be present in earlier versions like 1.8.7. |
|||||
|
|
I recently wrote a gem to simplify this process and to neaten up your views, etc etc. Check it out at: http://github.com/platform45/easy_dates |
||||
|
|
|
Try converting the entry to a string first. As long as the database column type is a date it will be formated as a date. self.date || self.exif_date_time_original.to_s |
|||
|
|