我在ng-repeat
從這個我想顯示日期作爲三個參數角JS:在角NG-重複
1.Date 2.Month 3.時間
顯示某些數據分割日期和時間參數我會得到的日期爲一個字符串2016-05-13 16:08:33
<div class="list-expense-menu-item" ng-repeat="notification in notifications">
<h2>{{notification.text}}</h2>
<span>Date:{{notification.notif_date}}</span>
</div>
預計
<span>Month:05</span>
<span>Date:16</span>
<span>Time:16:08</span>
如何將單個日期分成三個參數?
讓我試試:) –