我正在为我的页面使用 angularjs。我想从 JSON 对象中过滤值,因此不存在冗余。但我没有找到任何方法从 angular ng-repeat 中获取唯一值。有没有办法做到这一点?
好的,这里是关于这个问题的一些描述。我有一个这种格式的 JSON。我从服务中获得的这个 JSON。所以我们不能期望重复数据是如何发生的。
result = [
{
_id: "500004",
subject: "Complete the task",
date: "25 Aug, 2013"
},
{
_id: "500004",
subject: "Complete the task",
date: "25 Aug, 2013"
},
{
_id: "500005",
subject: "Attend to the event",
date: "2 Jan, 2013"
},
{
_id: "500065",
subject: "Some task deadline",
date: "20 Sep, 2013"
},
{
_id: "500004",
subject: "Complete the task",
date: "25 Aug, 2013"
}
]
我希望输出 JSON 没有重复的元素,所以我的输出将是这样的
result = [
{
_id: "500004",
subject: "Complete the task",
date: "25 Aug, 2013"
},
{
_id: "500005",
subject: "Attend to the event",
date: "2 Jan, 2013"
},
{
_id: "500065",
subject: "Some task deadline",
date: "20 Sep, 2013"
}
]