我正在尝试重新格式化我的 JSON 以使用外部 API
我当前的 JSON 结构:
{
"serviceConfigs": {
"servicecode": "SC1",
"specifiers": {
"Brand ID": {
"text": {
"value": "test",
"type": "text"
}
},
"Program ID": {
"text": {
"value": "test",
"type": "text"
}
}
}
}
}
期望的输出:
{
"serviceConfigs": [{
"servicecode": "SC1",
"specifiers": {
"Brand ID": {
"text": {
"value": "test",
"type": "text"
}
},
"Program ID": {
"text": {
"value": "test",
"type": "text"
}
}
}
}]
}
所以目前 serviceConfigs 在一个对象中,但我希望它进入一个数组
我目前的思考过程是使用推送命令,但我不确定如何访问对象(循环?)。