gpt4 book ai didi

javascript - 在 JavaScript 中根据数组的索引对对象进行排序?

转载 作者:行者123 更新时间:2023-11-30 12:53:24 25 4
gpt4 key购买 nike

好的,给定这个输入(为简洁起见,其他属性已被删除):

var names = [{
name: 'Michael'
}, {
name: 'Liam'
}, {
name: 'Jake'
}, {
name: 'Dave'
}, {
name: 'Adam'
}];

我想按另一个数组的索引对它们进行排序,如果它们不在该数组中,则按字母顺序排序。

var list = ['Jake', 'Michael', 'Liam'];

给我一​​个输出:

Jake, Michael, Liam, Adam, Dave

我试过使用 lo-dash,但不太正确:

names = _.sortBy(names, 'name');
names = _.sortBy(names, function(name) {
var index = _.indexOf(list, name.name);
return (index === -1) ? -index : 0;
});

因为输出是:

Jake, Liam, Michael, Adam, Dave

非常感谢任何帮助!

最佳答案

你很接近。 返回(索引=== -1)? -index : 0; 是问题所在。

按照你的方法,它应该是这样的:

names = _.sortBy(names, 'name')

var listLength = list.length;

_.sortBy(names, function(name) {
var index = _.indexOf(list, name.name);
// If the name is not in `list`, put it at the end
// (`listLength` is greater than any index in the `list`).
// Otherwise, return the `index` so the order matches the list.
return (index === -1) ? listLength : index;
});

关于javascript - 在 JavaScript 中根据数组的索引对对象进行排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20182717/

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