gpt4 book ai didi

javascript - 如何使用下划线返回对象作为 groupby 函数中的键

转载 作者:行者123 更新时间:2023-11-28 00:22:27 25 4
gpt4 key购买 nike

我的json看起来像

enter image description here

我正在尝试使用下划线库按 NodeGroup 进行分组

vm.populatedNodeGroups = _($scope.nodes).groupBy(function (o) { 
return o.NodeGroup.Name;
});

vm.populatedNodeGroups 中,我得到两个键(一个路由器,两个交换机),每个键有两个数组。

我想要得到的是两个节点组对象,每个对象有两个数组。

有什么建议吗?

最佳答案

a working example

我想说,你已经快到了。这可能是我们的观点,使用下划线 groupBy:

<div ng-controller="TheCtrl">

<div ng-repeat="(key, values) in populatedNodeGroups">
<h3>{{key}}</h3>
<ul>
<li ng-repeat="value in values">{{value | json}}</li>
</ul>
</div>
</div>

这是我们的 Controller ,正在执行groupBy

app.controller('TheCtrl', ['$scope', function ($scope) {       

var result = _(data)
.groupBy(function (o) {
return o.NodeGroup.Name;
})
;

$scope.populatedNodeGroups = result;

}])

结果会是这样的

区域二开关

  • { "NodeGroup": { "Name": "区域二交换机"... } ... }
  • { "NodeGroup": { "Name": "区域二交换机"... } ... }

区域一路由器

  • { "NodeGroup": { "Name": "区域一路由器"... } ... }
  • { "NodeGroup": { "Name": "区域一路由器"... } ... }

实际检查 here

关于javascript - 如何使用下划线返回对象作为 groupby 函数中的键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29862292/

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