在art-template模板引擎中,渲染數據的時候過濾時間的代碼片段

在template渲染數據的時候,把返回的2017-8-18-18轉換成 2017/1/18

的代碼片段

js部分:

function dateFormat(date, format) {
      date = new Date(date);
      var map = {
        "M": date.getMonth() + 1, //月份
        "d": date.getDate(), //日
        "h": date.getHours(), //小時
        "m": date.getMinutes(), //分
        "s": date.getSeconds(), //秒
        "q": Math.floor((date.getMonth() + 3) / 3), //季度
        "S": date.getMilliseconds() //毫秒
      };
      format = format.replace(/([yMdhmsqS])+/g, function (all, t) {
        var v = map[t];
        if (v !== undefined) {
          if (all.length > 1) {
            v = '0' + v;
            v = v.substr(v.length - 2);
          }
          return v;
        } else if (t === 'y') {
          return (date.getFullYear() + '').substr(4 - all.length);
        }
        return all;
      });
      return format;
    };

然後,再在函數外面調用

template.defaults.imports.dateFormat = dateFormat;

最後在需要轉換的渲染代碼模板中使用

{{dateFormat(priceExamineQuotedDtos[i].dateRequired,'yyyy/MM/dd')}} 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章