对于输入json
{
"dataSet": {
"integerFields": {
"patient_display_id": "1",
"ehmrn": "123",
"enctrid": "456"
},
"DecimalFields": {
"class": "1",
"section": "123",
"enctrid": "456"
}
}
}
我想删除***integerFields***,但保留它的值,输出如下。但保留其余的田地
{
"dataSet": {
"patient_display_id": "1",
"ehmrn": "123",
"enctrid": "456",
"DecimalFields": {
"class": "1",
"section": "123",
"enctrid": "456"
}
}
}
2条答案
按热度按时间31moq8wy1#
如果你只是把它的值赋给包含它的键,它就会被覆盖
ljo96ir52#
将
integerFields
字典的键与dataSet
字典合并,然后删除integerFields
键:输出: