跨级选中节点代码提取
针对省市区结构扁平化提取选中的代码,我们需要进行递归处理。
关键步骤在于传递选中的状态。递归时,如果上层节点选中,则下层所有子节点都视为选中状态。
/** * 获取所有被选中的代码 * @param {any[]} list 树形结构 * @param {string[]} parentList 到父级所有的代码的数组 * @param {boolean} parentChecked 上级是否被选中,若上级被选中,则下面所有的子选项均是被选中的数据 */const getCheckedList = (list, parentList = [], parentChecked = false) => { let result = []; list.forEach((item) => { const checked = parentChecked || item.check; // 父级被选中或当前被选中,均认为是被选中 const codeList = parentList.concat(item.code); if (item.children) { // 当前不是最内层 result = result.concat(getCheckedList(item.children, codeList, checked)); } else { // 已到最内层 if (checked) { result.push(codeList); } } }); return result;};
登录后复制
使用示例:
console.log(getCheckedList(tree));
登录后复制
以上就是如何通过递归算法提取跨级选中的节点代码?的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2805396.html