<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
let arr = [
{listKey: 0, itemKey: 0},
{listKey: 0, itemKey: 1},
{listKey: 0, itemKey: 2},
{listKey: 1, itemKey: 0},
{listKey: 1, itemKey: 1},
{listKey: 1, itemKey: 2},
{listKey: 2, itemKey: 0},
{listKey: 2, itemKey: 1},
{listKey: 2, itemKey: 2},
{listKey: 2, itemKey: 3},
{listKey: 2, itemKey: 4},
{listKey: 2, itemKey: 5}
]
// ----- 得一下结构
let toggleArr = [
{listKey: 0, itemKeyList: [0,1,2]},
{listKey: 1, itemKeyList: [0,1,2]},
{listKey: 2, itemKeyList: [0,1,2,3,4,5]}
]
</script>
</body>
</html>
已知arr的数据结构,怎么把arr转成toggleArr的数据结构?就是把arr里面的listKey相同的那些项的itemKey,组成一个数组?