js中树形结构修改自定义选择层级属性值

目录

前言

一、普通修改树形结构所有层级属性值

二、在修改所有层级前提做出判断进行修改

总结


前言

树形结构比普通数组结构稍微复杂写, 但并非非常复杂也只不过是嵌套多许多层级和不确定层级数是多少层,使用普通数组的常规遍历来修改树形结构并不是特别妥当的,并非说是行不通,如果确定了树形层级完全是可以用多层遍历实现,但层级是不确定的话则行不通了,这时候就因该使用递归去一层层操作直到层级的最后一层。且使用递归的话代码更加简洁。


一、普通修改树形结构所有层级属性值

使用递归进行各层级操作修改属性值

let arr = [
  { id: 1, children: [] },
  { id: 2, children: [
    { id: 201, children: [] },
    { id: 202, children: [
      { id: 2001, children: [] }
    ] },
    { id: 203, children: [] }
  ] },
  { id: 3, children: [
    { id: 301, children: [] }
  ] },
]
function deepSetProp(ars, option = { children: 'children', key: 'key', value: null }) {
  let dataStroe = JSON.parse(JSON.stringify(ars));
  function deepSet(arr, children, key, value) { //常规遍历数组进行修改属性值
    if (arr && Array.isArray(arr)) {
      arr.map(item => { 
        item[key] = value;
        item[children] = deepSet(item[children], children, key, value); //递归层级再次进行deepSet函数操作
      })
      return arr;
    }
  }
  return deepSet(dataStroe, option.children, option.key, option.value)
}
console.log(deepSetProp(arr, { children: 'children', key: 'key', value: 1 }))

打印结果树形机构的各个层级“key”属性值都修改为1

二、在修改所有层级前提做出判断进行修改

使用递归进行各层级操作 不急着修改属性值在设立一个条件满足则进行修改。

let arr = [
  { id: 1, children: [] },
  { id: 2, children: [
    { id: 201, children: [] },
    { id: 202, children: [
      { id: 2001, children: [] }
    ] },
    { id: 203, children: [] }
  ] },
  { id: 3, children: [
    { id: 301, children: [] }
  ] },
]
/**
 * deepSetProp(ars, callback, option) 给tree类型数组更改属性 (可控制层级)
 *   ars: 操作的对象数组
 *   callback(item, index, countDep, ars): 条件函数
 *     item: 元素项
 *     index: 索引
 *     countDep: 树形操作中所在层级
 *     ars: 操作的对象数组
 *   option: 配置项
 *     children: 子层属性键 默认 children
 *     key: 所需更改的属性键 默认 key
 *     value: 所需更改的属性值 默认 null
 */
function deepSetProp(ars, callback, option = { children: 'children', key: 'key', value: null }) {
  let dataStroe = JSON.parse(JSON.stringify(ars));
  function deepSet(arr, children, key, value , callback, deep, state) { //state用于调用初次传参不进行层级数增加
    let countDep = deep;
    if (arr && Array.isArray(arr)) {
      return arr.map((item, index) => {
        countDep = (!index && !state) ? ++countDep : countDep; 
        /**
         * 第一次元素ars遍历是的所有操作元素内的元素 arr[0]初始为1(第一层) 
         * 之后递归传递ars[children] 作为arr 再次arr[0]以此类推 增1 得到 列:得到2,3,4...层级
         */
        if (callback(item, index, countDep, dataStroe)) { 
          /**
           * 调用callback函数传入各个参数 主要还是countDep 传入给deepSetProp中第二个参数callback函数
           * deepSetProp中第二个参数callback函数 得到参数后进行判断条件层级则属性值更改
           */
          item[key] = value;
        }
        let childrenArr = deepSet(item[children], children, key, value, callback, countDep);
        item[children] = childrenArr;
        return item;
      })
    }
  }
  return deepSet(dataStroe, option.children, option.key, option.value, callback, 1, true)
}
console.log(deepSetProp(arr, (item, index, countDep) => countDep === 1, { children: 'children', key: 'key', value: true })) // 图一 
console.log(deepSetProp(arr, (item, index, countDep) => countDep === 2, { children: 'children', key: 'key', value: true })) // 图二

图一:

 图二:

方法我也分装差不多了虽然不是很好,其次使用说明也注释了,方法内的注释可能说的不够详细表述能力只能这样了。

是不是发现我没选择层级自定义修改

let countDepArray = [1,3]; //指定 1,3层级
console.log(deepSetProp(arr, (item, index, countDep) => ~countDepArray.indexOf(countDep), { children: 'children', key: 'key', value: true }))

图三:


callback(item, index, countDep, ars) 已经有”countDep“所在层级,用什么也不用太在意了。

自己指定层级以外callback(item, index, countDep, ars)中 item, index,更为实用,更改指定范围的属性值。

console.log(deepSetProp(arr, (item, index, countDep) => item.id == 3 || item.id == 2001, { children: 'children', key: 'key', value: true }))

图三:

数组中的 map类似,毕竟我用到的就是map。

如果觉得不够灵活的话下面函数则更为的灵活, 使用方法类似数组map的使用,多了option配置和 countDep层级。但在map在没法有返回元素的话会默认填充undefined这里我并不是,我直接没有返回的类似过滤掉了,这样也是为了能实现过滤效果。

/**
 * deepSetProp(ars, callback, children) 给tree类型数组更改属性 (可控制层级)
 *   ars: 操作的对象数组
 *   callback(item, index, countDep, arr): 条件函数
 *     item: 正在操作的元素
 *     countDep: 正在操作的树形操作中所在层级
 *     index: 正在操作的元素索引
 *     arr: 正在操作的数组对象
 *   children: 获取树形数组对象子级的 键名 (默认 "children") 注: 只针对子级最浅一层属性无效
 * */
function deepSetProp(ars, callback, children = 'children') {
  let dataStroe = JSON.parse(JSON.stringify(ars));
  function deepSet(arr, callback, children, deep, state) { //state用于调用初次传参不进行层级数增加
    let countDep = deep;
    if (arr && Array.isArray(arr)) {
      let _arr = [];
      for (let index = 0; index < arr.length; index++) {
        let item = arr[index]
        countDep = (!index && !state) ? ++countDep : countDep;
        let needItem = callback(item, countDep, index, arr);
        needItem !== undefined && _arr.push(needItem);
        if (needItem && needItem[children] && Array.isArray(needItem[children])) {
          let childrenArr = deepSet(needItem[children], callback, children, countDep);
          item[children] = childrenArr;
        }
      }
      return _arr;
    }
  }
  return deepSet(dataStroe, callback, children, 1, true)
}
console.log(deepSetProp(arr, (item, countDep) => {
  if (countDep === 1) {
    item.key = true;
  }
  return item;
}))  //图一效果
console.log(deepSetProp(arr, (item, countDep) => {
  if (countDep === 2) {
    item.key = true;
  }
  return item;
}, 'children'))  //图二效果
console.log(deepSetProp(arr, item => {
  if ((item.id + "")[2] != 0 && item.id != 3) {
    return item;
  }
}))  //类似过滤操作 (没有返回结果 同返回undefined 则不插入来实现过滤)

这里就不看打印结果了自己复制打印即可。测试的比较少,如有发现问题可以下面进行评论交流~

总结

本文仅仅是我个人对树形修改了解和分享~

  • 2
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值