0
私が完了していて、ここで:https://stackoverflow.com/a/39221731/6688824Angularjsで日時を取得 - 取得のURLからロードコンテンツを
これは私があなたのコンテンツにng-repeat
を作る方法ですが、それは私が日付を印刷していなければならないということであるとき、あなたはそれが表示されますこのような。
エラー:私はそれがために取得したいのですがどのような
/Date(1475859014037)/
は、それは簡単だったし、迅速かつ簡単に読んでどのように日付31-12-2016でした。しかし、私はこれを試してみました:
{{KundeValue.BuyTime | date: 'dd-mm-yyyy'}}
問題は、それがサポートしていると私はしたいと思うしている関係で問題を作成した日付であるということです。
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 yea、しかし、私は今完成しました。私はhttp://stackoverflow.com/questions/39221487/angularjs-how-to-display-datetime-in-cshtml/39221731#39221731を参照した後 –