alerttemplate 时间戳转换

/*时间戳转换*/

template.defaults.imports.dateFmt = function(ns){
      return new Date(parseInt(ns)).toLocaleString()
  };
<div class="item-title">
      <p class="pull-left">{{item.title}}&nbsp;&nbsp;&nbsp;&nbsp;发表时间:{{item.createTime | dateFmt}}</p>
      <span class="pull-right">{{item.postLayer}}楼</span>
</div>
原文地址:https://www.cnblogs.com/linsx/p/7601911.html