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.
好吧,我想为我的航班应用程序显示出发和到达时间(带日期)。
我创建了两个字段“出发”和“到达”,数据类型为日期时间。
在控制器中可以为这些使用哪些方法,以及如何在索引页面中显示它们。
就像是:
<%= flight.arrival.strftime('%Y-%m-%d %H:%M') %>
或者更好地在模型中放置一种格式化方法。
假设你的桌子上有一个&arrival然后departureflights
arrival
departure
flights
在控制器中
@flights = Flight.all
在视图中
<% for flight in @flights%> <%= flight.arrival %> <%= flight.departure %> <% end %>