代码如下:
lists.map((list,list_index)=>{
list.map((item,item_index)=>{
if (item.type == 1) {
}
})
})
怎么判断当前的item.type ==1的item是当前list的?
,因为我要做一个操作,把当前item.type == 1的放在一个新的对象中,
if(item.type == 1){
obj.children = item
}
如果直接这样写的话,lists里面有很多list下都有item.type ==1 我只想取当前的
人到中年有点甜
相关分类