前端取得資料後要再轉換成 Date 物件,範例 :
$http.post('CheckReport/查詢').success(function (data, status, headers, config) {
angular.forEach(data, function (obj, key) {
if (obj.shareDate != null) obj.shareDate = new Date(obj.shareDate);
});
$scope.gridOptions.data = data;
}).catch(function (data, status, headers, config) {
if (status != undefined) alert(data.statusText);
console.log(data.data);
});
沒有留言:
張貼留言