功能介绍:一个数组显示基础数据,一个数组显示排序顺序,让基础数据数组根据排序数组的顺序排序!
具体代码如下:
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://m.ipkd.cn/webs_3458.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!