{
"a1": {
"price": {
"high": 4.68,
"low": 3.75,
"code": 1
}
},
"a2": {
"price": {
"high": 2.77,
"low": 2.29,
"code": 1
}
}
}
现有上面的json,怎么把它转换一下变成下面的格式:
{
"china": {
"cny": {
"a1": {
"high": 111,
"low": 66
},
"a2": {
"high": 44,
"low": 22
}
}
}
}
My idea is to extract the original json first, because the original json may have a different format, and then uniformly convert it into the following format, which foreach cannot do.