删除嵌套数组中的某一项

[{
        "title": "parent",
        "expanded": true,
        "folder": true,
        "id": "0",
        "children": [
          {
            "title": "parent[0]",
            "expanded": true,
            "folder": true,
            "id": "1",
            "children": [
              {"title": "Books",  "id": "2"},
              {"title": "Kindle Books",  "id": "3"},
              {"title": "Books For Study",  "id": "4"},
              {"title": "Audiobooks",  "id":"5"}
            ]
          },
          {
            "title": "parent[1]", "id": "6", "folder": true, "children": [
            {"title": "Music", "id": "7"},
            {"title": "MP3 Downloads", "id": "8"},
            {"title": "Musical Instruments & DJ", "id": "9"},  
          ]
          }
        ]
      }]

想根据id来删除数组中的某一项,数组长度不确定,是嵌套的,知道用递归。。但是不会写,哪位能帮忙写下。。

阅读 6.1k
2 个回答

这样应该就可以了,你试试

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script type="text/javascript">

function call(arr,tag){
  for(var i = arr.length ; i > 0 ; i--){
      if(arr[i-1].id == tag){
        arr.splice(i-1,1);
      }else{
        if(arr[i-1].children){
          call(arr[i-1].children,tag)
        }
      }
  }
}
var arr = [{
'title': 'parent',
'expanded': true,
'folder': true,
'id': '0',
'children': [
  {
    'title': 'parent[0]',
    'expanded': true,
    'folder': true,
    'id': '1',
    'children': [
      {
        'title': 'Books',
        'id': '2'
      },
      {
        'title': 'Kindle Books',
        'id': '3'
      },
      {
        'title': 'Books For Study',
        'id': '4'
      },
      {
        'title': 'Audiobooks',
        'id': '5'
      }
    ]
  },
  {
    'title': 'parent[1]',
    'id': '6',
    'folder': true,
    'children': [
      {
        'title': 'Music',
        'id': '7'
      },
      {
        'title': 'MP3 Downloads',
        'id': '8'
      },
      {
        'title': 'Musical Instruments & DJ',
        'id': '9'
      },
    ]
  }
]

}];

call(arr,2);
console.dir(arr);

</script>
</body>
</html>

var json = [{
    "title": "parent",
    "expanded": true,
    "folder": true,
    "id": "0",
    "children": [{
        "title": "parent[0]",
        "expanded": true,
        "folder": true,
        "id": "1",
        "children": [{
            "title": "Books",
            "id": "2"
        }, {
            "title": "Kindle Books",
            "id": "3"
        }, {
            "title": "Books For Study",
            "id": "4"
        }, {
            "title": "Audiobooks",
            "id": "5"
        }]
    }, {
        "title": "parent[1]",
        "id": "6",
        "folder": true,
        "children": [{
            "title": "Music",
            "id": "7"
        }, {
            "title": "MP3 Downloads",
            "id": "8"
        }, {
            "title": "Musical Instruments & DJ",
            "id": "9"
        }, ]
    }]
}]

function getFilterArr(arr, tar) {
    return arr.filter(function(item, i) {
        if (item.children) {
            item.children = getFilterArr(item.children, tar)
        }
        return item.id !== tar;
    })
}

console.log(JSON.stringify(getFilterArr(json, '8')))
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题