如何更改 Rails 3 中日期的默认格式?
我对 Rails 的日期格式有疑问。在我看来,默认的日期格式是dd/mm/yyyy
。我该如何将其更改为 mm/dd/yyyy
之类的内容?
我在某处读到 ActiveSupport gem 可以处理这个问题,但我不知道它是如何工作的。
I'm having problem with the date format of rails. It seems to me that the default Date Format is dd/mm/yyyy
. How am I gonna change it to something like mm/dd/yyyy
?
I read somewhere that ActiveSupport gem can handle this but I don't how it works.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将以下行放入您的 enviroment.rb 中
并尝试
在您的 Rails 控制台上
Put following line in your enviroment.rb
and try
On you rails console
您可以将该文件添加到名为 ie (date_time_formats.rb) 的 config/initializers 文件夹中。只需将以下行添加到文件中即可。
根据要求,您可以更改日期格式。
You can add the file into the
config/initializers
folder having name i.e. (date_time_formats.rb). Simply add following line to the file.As per requirement you can change date format.