简单的js递归

Posted yixiaoyang-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了简单的js递归相关的知识,希望对你有一定的参考价值。

找出isshow为true的对象的id???

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body></body>
<script>
let array = [
{
id:1,
isshow:false,
children:[
{
id:2,
isshow:false,
children:[
{
id:21,
isshow:true,
children:[]
}
]
}
]
},
{
id:3,
isshow:false,
children:[]
},
{
id:4,
isshow:true,
children:[
{
id:5,
isshow:false,
children:[
{
id:6,
isshow:true,
children:[]
},
{
id:7,
isshow:false,
children:[]
},
{
id:8,
isshow:true,
children:[]
},
]
}
]
}
]
var returnItem="";
function find (arr,isshow){
if (!arr) {
return
}
arr.forEach((item)=>{
if(item.isshow==isshow){
returnItem +=item.id+",";
if(item.children.length>0){
find(item.children,isshow)
}
}else{
find(item.children,isshow)
}
})
}
find(array,true)
console.log("returnItem",returnItem) ===============================结果为:21,4,6,8,
</script>
</html>

以上是关于简单的js递归的主要内容,如果未能解决你的问题,请参考以下文章

最简单的递归

js递归树结构

浅谈JS递归

JS函数式编程和递归探索:路由树的操作

js 递归学习

如何用java递归生成带children的json串