javascript如何获取动态生成的嵌套JSON数组中的键值对

2020-09-09 04:26发布

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


大家好,

我在JSON数组下面。.

 [{
  " text":" test",
  "副标题":"生产",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":" JP",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":是,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }]
  }]
  }]
  },{
  " text":" test",
  " subheader":" Planning JP",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }]
  }]
  },{
  " text":" test",
  " subheader":"印度",
  "已启用":false
  },{
  " text":" test",
  "副标题":"日本东南部销售办事处",
  "已启用":false
  },{
  " text":" test",
  "副标题":"合作伙伴销售JP",
  "已启用":false
  }]
  }]
 

如果看到此数组块。

"节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }] 

上面的数组代码块将动态添加,并且可能添加n次。 现在,我只想在整个JSON结构中将 enabled true更改为false

有人可以帮助我进行代码循环,并在完整的JSON结构中将启用的值更改为false。

先谢谢您。

         点击此处--->   EasySAP.com群内免费提供SAP练习系统(在群公告中)

加入QQ群:457200227(SAP S4 HANA技术交流) 群内免费提供SAP练习系统(在群公告中)


大家好,

我在JSON数组下面。.

 [{
  " text":" test",
  "副标题":"生产",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":" JP",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":是,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }]
  }]
  }]
  },{
  " text":" test",
  " subheader":" Planning JP",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":false,
  "节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }]
  }]
  },{
  " text":" test",
  " subheader":"印度",
  "已启用":false
  },{
  " text":" test",
  "副标题":"日本东南部销售办事处",
  "已启用":false
  },{
  " text":" test",
  "副标题":"合作伙伴销售JP",
  "已启用":false
  }]
  }]
 

如果看到此数组块。

"节点":[{
  " text":" test",
  " subheader":"测试操作",
  "已启用":true
  }] 

上面的数组代码块将动态添加,并且可能添加n次。 现在,我只想在整个JSON结构中将 enabled true更改为false

有人可以帮助我进行代码循环,并在完整的JSON结构中将启用的值更改为false。

先谢谢您。

付费偷看设置
发送
2条回答
一只江湖小虾
1楼-- · 2020-09-09 04:58

嗨,

使用google ...在某些情况下是您的朋友;)

https://stackoverflow.com/questions/2203958/jquery- 对象上的递归迭代

重获

约瑟夫

Cikesha
2楼-- · 2020-09-09 05:04

感谢您的回复。 我通过以下调整自己解决了该问题。

 var arr = jsonArray;
 arr = JSON.parse(JSON.stringify(arr).replace(/" enabled" \:true/g,'" enabled":false')); 

一周热门 更多>