其實我從一個python對象開始構建Json對象。Python構建了混合類型的JSON
我的出發JSON是:
responseMsgObject = {'Version': 1,
'Id': 'xc23',
'Local': "US"
'Type': "Test",
'Message' : "Message body" }
responseMsgJson = json.dumps(responseMsgObject, sort_keys=False)
每個東西的作品,但現在我需要把JSON以下,進入「Message」字段。
{
"DepID": "001",
"Assets": [
{
"Type": "xyz",
"Text": [
"abc",
"def"
],
"Metadata": {
"V": "1",
"Req": true,
"Other": "othervalue"
},
"Check": "refdw321"
},
{
"Type": "jkl",
"Text": [
"ghi"
],
"Metadata": {
"V": "6"
},
"Check": "345ghsdan"
}
]
}
我建立了許多其他json(但更簡單),但我在這個json的麻煩。
感謝您的幫助。
所以正常工作,有什麼問題呢? –
請編輯該問題以提供[最小,完整和可驗證的示例](https://stackoverflow.com/help/mcve),具體包括您正在努力工作的部分以及相關的堆棧跟蹤(如果有)。 – roganjosh
我更新我的問題 – Federico