gpt4 book ai didi

angularjs - 从 JSON 过滤唯一值

转载 作者:行者123 更新时间:2023-12-04 02:48:05 25 4
gpt4 key购买 nike

我正在为我的页面使用 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"
}
]

最佳答案

您可以使用具有 unique 的 Angular UI。过滤器定义。

来源可在here .

基本上,您可以按如下方式使用过滤器:

<div ng-repeat="item in result | unique:'_id'">
//Body here
</div>

关于angularjs - 从 JSON 过滤唯一值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18747643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com