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
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
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。