gpt4 book ai didi

JavaScript 开关大小写 : anyway to force the order of the elements as they are written out?

转载 作者:行者123 更新时间:2023-12-02 20:34:42 24 4
gpt4 key购买 nike

我已将结果返回到 div 侧边栏中的 Google map 应用程序。结果是属于客户希望按特定顺序返回的类别的企业名称。不幸的是,这不是直接的 alpha 排序。例如,一个类别以 F 开头,第二个类别以 C 开头,最后三个类别以 A 开头。

所以我需要我的开关,它可以工作,但自然地坚持删除按 alpha 排序的值(因为它们是以这种方式从数据库返回的)顺序,因为这就是它遇到它们的方式。设置此功能的最佳方法是什么,以便我可以按照客户要求的任意顺序获取我的首选类别及其关联的公司名称?

谢谢!

最佳答案

您能否按照您想要的顺序迭代类别,并找到与其关联的对象?

例如(伪代码)

var categories = [ 'F', 'C', 'A1', 'A2', 'A3' ].map(function (category) {
return businesses.filter(function (business) {
return business.category === category;
});
});

关于JavaScript 开关大小写 : anyway to force the order of the elements as they are written out?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3496973/

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