js多个判断进行优化

//优化前
sectionList(){
	this.sel_config.forEach(item => {
       if(item.name == 'temperature_max'){
          this.temperature_max = Number(item.value)
        } else if(item.name == 'temperature_min'){
          this.temperature_min = Number(item.value)
        } else if(item.name == 'voltage_max'){
          this.voltage_max = Number(item.value)
        } else if(item.name == 'voltage_min'){
          this.voltage_min = Number(item.value)
        } else if(item.name == 'electric_current_max'){
          this.electric_current_max = Number(item.value)
        } else if(item.name == 'electric_current_min'){
          this.electric_current_min = Number(item.value)
        } else if(item.name == 'pressure_max'){
          this.pressure_max = Number(item.value)
        } else if(item.name == 'pressure_min'){
          this.pressure_min = Number(item.value)
        } else if(item.name == 'device_temperature_max'){
          this.device_temperature_max = Number(item.value)
        } else if(item.name == 'device_temperature_min'){
          this.device_temperature_min = Number(item.value) 
        } else if(item.name == 'humidity_max'){
          this.humidity_max = Number(item.value)
        } else if(item.name == 'humidity_min'){
          this.humidity_min = Number(item.value) 
        } 
      });
    },
//优化后企鹅交流330586621
sectionList(){
  const gather = ['temperature_max','temperature_min','voltage_max','voltage_min','electric_current_max','electric_current_min','pressure_max','pressure_min','device_temperature_max','device_temperature_min','humidity_max','humidity_min']
  this.sel_config.forEach(item => {
    gather.forEach(item1=>{
      if(item.name == item1){
        this[item.name] = Number(item.value)
      }
    })
  });
},
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值