The default date format in Ruby is yyyy-mm-dd, but I needed them to be dd/mm/yyyy in the view
I have wrote a date_format file in config/initializers
as:
Time::DATE_FORMATS.merge!( :uk_format => '%m/%d/%Y')
This didn't work since I need to call date.to_s(:uk_format)
in order to use this format. But since I'm using <%= f.text_field :paymentDate %>
to display the date, I'm not sure I can add to_s
to this case.
Can someone help me out please.
Edit 1
Actually date.to_s(:uk_format) doesn't work either, how do I use initializer properly.....?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…