【js】给定一个id,通过id寻找对应的label文字

tree型数据

data = [
	{
		id: 1,
		label: '江苏',
		code: '邮政编码-江苏',
		children: [
			{
				id: 1-1,
				label: '南京',
				code: '邮政编码-南京',
				children: [
					{
						id: 1-1,
						label: '栖霞',
						code: '邮政编码-栖霞',
						children: [ ... ] / [],
					},
				],
			},
		],
	},
	{
		id: 2,
		label: '陕西',
		code: '邮政编码-陕西',
		children: [
			{
				id: 2-1,
				label: '西安',
				code: '邮政编码-西安',
				children: [
					{
						id: 2-1-1,
						label: '西安的某个区',
						code: '邮政编码-西安的某个区',
						children: [ ... ] / [],
					},
				],
			},
		],
	}
]

1、递归查询

export const isBlank = (val) => {
  if(typeof val === 'number') {
    return false
  }else if(typeof val === 'string' && isOnlyWhitespace(val)){
    return true
  }else {
    return _.isEmpty(val)   // lodash的判断引用数据类型、boolean是否为空的方法
  }
}

export const recursiveFindLabel = (list, id) => {
  for (const item of list) {  
    if (item.id === id) {  
      return item.label
    }  
    if (item.children && item.children.length > 0) {  
      const child = recursiveFindLabel(item.children, id)
      if (!_.isEmpty(child)) { 
        return child
      }
    }
  }
  return null
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值