gpt4 book ai didi

javascript - 按属性值(数字键)对 JavaScript 对象进行排序

转载 作者:行者123 更新时间:2023-11-28 14:16:29 25 4
gpt4 key购买 nike

按住!在标记为重复或投票否决之前

假设我有一个如下所示的 java 脚本对象,我想按值对这个对象进行排序,是的,我知道数组是为此发明的,并且具有内置的 sort 但出于某种原因我必须去与这个对象:(

var myObj = {"you": 100, "me": 75,"11111": 20, "foo": 116, "bar": 15};

到目前为止,我最终得到了

{11111: 20, bar: 15, me: 75, you: 100, foo: 116}

但你可以看到这不是你想要的,因为在这种情况下,我尝试了这里给出的这个被剥夺的解决方案的许多解决方案,代码如下

Object
.keys(myObj)
.sort((a, b) => myObj[a]-myObj[b])
.reduce((_sortedObj, key) => ({
..._sortedObj,
[key]: myObj[key]
}), {})

编辑我看到这个question这已经不是我的情况了,因为我有数值,所以没有任何单一的答案对我有帮助

最佳答案

这是不可能的。

在 ES2015+ 中,the traversal order对象属性有:

  • 首先,键是整数索引,按数字升序排列。
  • 然后是所有其他字符串键,按照它们添加到对象的顺序排列。
  • 最后是所有符号键,按照它们添加到对象的顺序排列。

即使您在末尾添加 11111 键,当您使用 Object.keys()for... 时,始终会首先获取它。在循环

const obj = {};
obj["first"] = 1
obj["second"] = 2
obj["200"] = 200 // integer keys
obj["100"] = 100

// 100 and 200 property will be moved to the top even if they are added in the end
// 200 was added before 100, but it will be printed after 100
// because integer indices are traversed in ascending numeric order
console.log(obj)

// 100 will be the first key
console.log(Object.keys(obj))

您可以使用 Map对象代替。它具有键值对,并且会记住键的原始插入顺序。

关于javascript - 按属性值(数字键)对 JavaScript 对象进行排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57203330/

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