修改对象与数组数据的键名

对象:
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,
 }))

参考:【vue】修改对象/数组属性键名 - 栀妹儿 - 博客园 (cnblogs.com)

posted on 2023-03-15 08:11  SE7EN_96  阅读(57)  评论(0编辑  收藏  举报

导航