摘要:
链判断运算符 ?. 业务场景: 1 // 假设data是个数组,如果data没有值,为undefinded,则直接复制会报错,因为没有length这个属性 2 3 const dateCount = data.length // 报错 4 5 // 正常的处理情况是,加个判断 6 if (data) 阅读全文
摘要:
先来个简单的数据 1 lists = [{ 2 id: 1, 3 title: '第一层', 4 children: [{ 5 id: 3, 6 title: '第二层', 7 children: [{ 8 id: 4, 9 title: 第三层 10 }] 11 }] 12 },{ 13 id: 阅读全文