首先,看起来DateTime格式变量似乎没有记录在任何地方,因此对于任何能够在
rubydocs中向我展示的人都是1.第二,在查看Date.strftime函数代码时,我没有看到任何可以让我做类似的事情:
2010年9月9日星期四
有谁知道这是否可能?
解决方法
你可能想要
take a look here.
总结一下
time = DateTime.now time.strftime("%A,%B #{time.day.ordinalize} %Y")
请注意,您运行的是纯Ruby(2.0),您需要调用:
require 'active_support/core_ext/integer/inflections'