我已完成此处:https://stackoverflow.com/a/39221731/6688824
这就是我对您的内容ng-repeat
的方式,但是当我必须打印日期时,您会看到这样的内容。
错误:
/日期(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 :(得分:-1)
最好的方法是使用momentjs和他的角度整合:https://github.com/urish/angular-moment
过滤器插件功能强大且易于使用。