gpt4 book ai didi

angularjs - 如何在angular js中从json获取最小值和最大值

转载 作者:行者123 更新时间:2023-12-04 09:34:52 24 4
gpt4 key购买 nike

我想从 angular js 中的 json 获取最大值和最小值
我的json:

{

"data":[

{
"name": "ranjith",
"age": 22
},
{
"name": "rahul",
"age": 20
},
{
"name": "jinesh",
"age": 25
},
{
"name": "vishnu",
"age": 24
}

]

}

和我的 Controller :-
var app = angular.module('myApp', ['']);
app.controller('myCtrl', function($scope, data) {

$scope.data = data.data;
$scope.min="";
$scope.max="";

};
});

我想从数组中获取最小值和最大值并将其存储在变量 min 和 max 中

最佳答案

你可以简单地使用

$scope.min = Math.min.apply(Math,$scope.data.map(function(item){return item.age;}));

$scope.max = Math.max.apply(Math,$scope.data.map(function(item){return item.age;}));

关于angularjs - 如何在angular js中从json获取最小值和最大值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35058755/

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