功能介绍:一个数组显示基础数据,一个数组显示排序顺序,让基础数据数组根据排序数组的顺序排序!
具体代码如下:
const data = [ { id: 1, name: "web3" }, { id: 2, name: "html5" }, { id: 3, name: "css3" }, { id: 4, name: "nodejs" }, { id: 5, name: "vuejs" }, { id: 6, name: "php" } ]; const order = [2, 4, 1, 6, 5, 3]; //根据这个顺序对id进行排序。也可以改成name //方法 hash = {} data.forEach(function(item) { hash[item.id] = item }) //id:根据需要修改成自己的参数 results = order.map(function(item) { return hash[item] }) //输出结果 console.log('输出结果:', results) //输出结果: //(6) [{…}, {…}, {…}, {…}, {…}, {…}] //0: {id: 2, name: 'html5'} //1: {id: 4, name: 'nodejs'} //2: {id: 1, name: 'web3'} //3: {id: 6, name: 'php'} //4: {id: 5, name: 'vuejs'} //5: {id: 3, name: 'css3'} //length: 6
标签: 数组排序
上面是“js如何让一个数组根据另一个数组的顺序进行排序”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_3458.html
workflows工作流
- 图生图工作流:粉红色梦幻家园comfyui工作流
- 一个精致透明的朱红色水晶凤凰
- 一棵树从鸟笼里长出来的梦幻般场景
- 梦幻向日葵ComfyUI工作流
- 一辆老式灵车在黑暗中从雾中出现ComfyUI工作流
- 一匹热血沸腾的汗血宝马庄严地站立着ComfyUI工作流
- 一只漂亮的孔雀的尾巴完全由披萨制成ComfyUI工作流
- 在月球上穿着太空服的宇航员
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!