这似乎是一项很容易的任务,但由于某种原因被卡住了!我尝试了在 SE 中找到的几种解决方案,主要是递归迭代数组/对象,例如 如何迭代数组并删除 JavaScript 中的元素和循环遍历数组并删除项目,而不会破坏 for 循环(和许多其他)但是没有运气!我有这个数组{ "condition": "AND", "rules": [ { "id": "loc1", "type": "string", "input": "text", "operator": "equal", "value": "test0" }, { "id": "sessionIgnore", "type": "string", "input": "text", "operator": "equal", "value": "ignore0" }, { "condition": "AND", "rules": [ { "id": "loc1", "type": "string", "input": "text", "operator": "equal", "value": "test1" }, { "id": "sessionIgnore", "type": "string", "input": "text", "operator": "equal", "value": "ignore1" }, { "condition": "AND", "rules": [ { "id": "loc1", "type": "string", "input": "text", "operator": "equal", "value": "test2" }, { "id": "sessionIgnore", "type": "string", "input": "text", "operator": "equal", "value": "ignore2" } ] } ] }, { "condition": "AND", "rules": [ { "id": "loc1", "type": "string", "input": "text", "operator": "equal", "value": "test3" }, { "id": "sessionIgnore", "type": "string", "input": "text", "operator": "equal", "value": "ignore3" } ] } ], "valid": true}在我的情况下似乎是什么问题:在这两种情况下,我都递归地遍历数组的delete x/array.slice()方法:好像引用保持为空数组元素,然后我需要调用一个清理方法,我宁愿避免这种情况我创建了一个arrayRemove()函数,从给定的数组中删除x元素,但在这种情况下,我似乎有一个逻辑问题,在数组的第二级之后我无法解析任何东西任何帮助表示赞赏!
添加回答
举报
0/150
提交
取消