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")
});
})
你的日期輸入是一個包含'/ Date(1475859014037)/'的字符串嗎? – Jorg
@Jorg是的,但我現在已經完成了。當我看到http://stackoverflow.com/questions/39221487/angularjs-how-to-display-datetime-in-cshtml/39221731#39221731 –