我目前正在使用 instagram 的 API 来收集有关照片的 JSON 数据,并且我正在使用下划线模板来显示数据。我很难以简单的月/日/年格式打印日期(以 Unix 时间提供)。
<div class="mask">
<h2> <!-- Formatted date --> </h2>
<p>
<% if (item.get('caption')) { %>
<%= item.get('caption').text %>
<% } %>
</p>
<p><%= item.get('likes').count %> likes, <%= item.get('comments').count%> comments</p>
</div>