角度js中的日期變得像/ Date(1494288000000)/這是從asp.net對象列表中顯示的。來自Json列表的日期未能正確顯示在角度js中
<tr class="unread" data-ng-repeat="notification in Notifications | filter:q | startFrom:currentPage*pageSize | limitTo:pageSize">
<td class="inbox-small-cells">
<input data-ng-model="arr[notification.NotificationId]" type="checkbox" value="{{notification.NotificationId}}" ng-checked="" ng-click="" class="mail-checkbox">
</td>
<td class="view-message dont-show">{{notification.Title}}</td>
<td class="view-message ">{{notification.Message}}</td>
<td class="view-message text-right">{{notification.Date | date}}</td>
</tr>
提供json –