Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试以类似“yyyyMMddHHmm”的格式输出表示当前日期/时间的字符串。例如,“201310310759”表示“2013 年 10 月 31 日上午 7:59”。
这是我到目前为止所拥有的:
Date.today.to_formatted_s(:db).gsub("-","")
利用:
Time.now.strftime("%Y%m%d%H%M")
您可以在此处查看其他选项