修改对象与数组数据的键名
对象:
let newData= JSON.parse(JSON.stringify(this.data).replace(/plant/g,"children")) 替换plant为children
修改数组: this.plant = this.plant.map(item=>({ company_id:item.children_code, company_name:item.children_name, children:item.device, }))
你看三小欸还不学习
对象:
let newData= JSON.parse(JSON.stringify(this.data).replace(/plant/g,"children")) 替换plant为children
修改数组: this.plant = this.plant.map(item=>({ company_id:item.children_code, company_name:item.children_name, children:item.device, }))