这个JS块是我在网上找到的日期格式化解决方案,它运行良好,但它没有包含将时间从军事时间转换为标准时间并考虑PM / AM差异的方法。我该如何添加?
HTML
<ion-row>
<ion-col><span class="showDetails">Date:</span>{{getFormattedDate(event.eventTime, 'MM-dd-yyyy')}}</ion-col>
<ion-col><span class="showDetails">Time:</span>{{getFormattedDate(event.eventTime, 'HH:MM')}}</ion-col><ion-col><span class="showDetails">
</ion-row>
.TS FILE
getFormattedTime (time, format) {
var t = new Date(time);
var tf = function (i) { return (i < 10 ? '0' : '') + i };
return format.replace(/yyyy|MM|dd|HH|mm|ss/g, function (a) {
switch (a) {
case 'yyyy':
return tf(t.getFullYear());
case 'MM':
return tf(t.getMonth() + 1);
case 'mm':
return tf(t.getMinutes());
case 'dd':
return tf(t.getDate());
case 'HH':
return tf(t.getHours());
case 'ss':
return tf(t.getSeconds());
}
})
}// end of getFormattedTime