1 const data = [{
 2    name: "撤回",
 3    type: "withdraw"
 4 }, {
 5    name: "...",
 6    type: "other",
 7    children: [{
 8       name: "会签",
 9       type: "sign"
10    }]
11 }];
12 
13 const exist = data.some(item => item.type.indexOf('sign') > -1);

打印结果:

true

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-31
  • 2022-12-23
  • 2023-03-14
猜你喜欢
  • 2021-09-17
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
相关资源
相似解决方案