我正在使用Moment.js和 Twig 来计算时间前,
代码(Twig) -
我在变量中有日期,post_date_gmt
我正在使用它,
<div class="time">
<time datetime="{{ post_date_gmt| date('Y-m-d H:i:s')}}">moment.unix({{ post_date_gmt }}).local().fromNow()</time>
</div>
这给了我输出:
<div class="time">
moment.unix(1331845445).local().fromNow()
</div>
当我尝试在控制台中运行以上字符串时,它运行良好 - '一个月前'。
我不明白为什么 twig 没有给我正确的输出?
难道我做错了什么?。谢谢你的时间。