2016-10-08 92 views
0

我完成這裏https://stackoverflow.com/a/39221731/6688824獲取Angularjs日期時間 - 從獲取網址加載內容

這是我如何讓ng-repeat到您的內容,但是當它是我必須打印日期,你會看到它喜歡這個。

錯誤:

/Date(1475859014037)/

我想獲得它是,它是31-12-2016如何日期很容易和快速閱讀和簡單。不過,我已經試過這樣:

{{KundeValue.BuyTime | date: 'dd-mm-yyyy'}} 

的問題是,它是支持和創造有關的問題,而我願意這樣做的日期。我在我的ng-repeat作品已經取得得很好,但它僅僅是一個支持,給我的日期

問題EIDT日期

var app = angular.module('AllKunder', []); 
app.controller('KundeList', function ($scope, $http) { 

    $scope.totalDisplayed = 50; 

    $scope.change = function() { 
     $scope.totalDisplayed += 25; 
    } 

    var url = "/JsonClass/ListUser"; 

    $http.get(url).success(function(response) { 
     $scope.KundeList = response; 
     console.log("GET Url") 
    }); 

}) 
+0

你的日期輸入是一個包含'/ Date(1475859014037)/'的字符串嗎? – Jorg

+1

@Jorg是的,但我現在已經完成了。當我看到http://stackoverflow.com/questions/39221487/angularjs-how-to-display-datetime-in-cshtml/39221731#39221731 –

回答