码迷,mamicode.com
首页 > 编程语言 > 详细

对象值去重排序

时间:2020-02-28 23:03:21      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:option   style   png   lse   type   info   head   图片   tle   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title>对象值去重排序</title>
     
    </head>
    <body>
<script>
let arrys = [
    { serial: 1, option: 1 },
    { serial: 1, option: 2 },
    { serial: 2, option: 2 },
    { serial: 2, option: 4 },
    { serial: 3, option: 5 }
]
let otheritems = [];
let list = {};
for (let i = 0; i < arrys.length; i++) {
    let element = arrys[i].serial;
    if (list[element]) {
        list[element].serial = list[element].serial;
    } else {
        list[element] = {};
        list[element].serial = arrys[i].serial;
    }
    list[element].option = arrys[i].option;
}
//对象转数组
for (var i in list) {
    otheritems.push(list[i])
}
console.log(otheritems)
</script>
</body>

</html>

把值 

技术图片

 

 

转成:

技术图片

 

对象值去重排序

标签:option   style   png   lse   type   info   head   图片   tle   

原文地址:https://www.cnblogs.com/liubingyjui/p/12380451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!