我在阵列上有一个ng-repeat。
每个对象都有一个名为"checkdate"
的属性,该属性只是一个"New Date()"
。
我希望ng-repeat
仅显示今天创建的对象。我怎样才能做到这一点?
谢谢
最佳答案
$scope.list1 = [
{name: "item1", checkdate: '2016-03-04T09:25:57.882Z'},
{name: "item2", checkdate: '2016-03-05T09:25:57.882Z'},
{name: "item3", checkdate: '2016-03-06T09:25:57.882Z'}];
var curDate = new Date();
var y = curDate.getFullYear();
var m = curDate.getMonth() + 1;
if (m < 10) {
m = '0' + m;
}
var d = curDate.getDate();
if (d < 10) {
d = '0' + d;
}
$scope.curDate = y + '-' + m + '-' + d;
...
<div ng-repeat="item in list1 | filter:{checkdate: curDate}">
{{item.name}} - {{item.checkdate}}
</div>
关于javascript - 如何使用angularjs在ng-repeat中按属性'today'进行过滤?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35827229/