我使用
在预订摘要中打印了日期<td colspan="2"><%= booking.created_at %></td>
显示日期如2013-12-18 16:11:24 +0800但是,我只想2013-12-18
你能指导我怎么做吗?
答案 0 :(得分:1)
你想要的是Time#strftime方法
所以你的代码看起来像这样:
<td colspan="2"><%= booking.created_at.strftime('%Y-%m-%d') %></td>
或
<td colspan="2"><%= booking.created_at.strftime('%F') %></td>