作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下数组
[
0: {
nameId: "041c1119"
lastError: null
spotId: "15808822"
workType: "1"
},
1: {
nameId: "041c1130"
lastError: null
spotId: "15808821"
workType: "1"
},
2: {
nameId: "041c11123"
lastError: null
spotId: "15808820"
workType: "1"
}
]
我正在尝试获取最低的 spotId
值,在本例中我需要获取 15808820
。我将不胜感激任何建议的帮助(使用 lodash 的例子会很棒)谢谢!
最佳答案
不需要任何像Lodash这样的外部库,你可以用纯JS实现结果。
这是使用 ES6 功能的一行代码的解决方案 Array.reduce()
方法。
const data = [{
nameId: "041c1119",
lastError: null,
spotId: "15808822",
workType: "1"
}, {
nameId: "041c1130",
lastError: null,
spotId: "15808821",
workType: "1"
}, {
nameId: "041c11123",
lastError: null,
spotId: "15808820",
workType: "1"
}];
const minSpotId = data.reduce((prev, current) => (prev.spotId < current.spotId) ? prev : current);
console.log(minSpotId);
关于javascript - 如何从 Array/Angular 中的元素获取最小值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60330781/
我是一名优秀的程序员,十分优秀!