我有以下问题。我必须发送以下 json
tosend = {"tn": 37537.6015625,
"d":
{"fa": 12, "nt": 37537.6015625, "ca": 1, "a": 4692.2001953125, "p": 4692.2001953125, "a": 1116861},
"tb": -27182.3984375}.
为此,我使用了 json.put () 方法,然后使用了 json.acummulate ("d", JsonObject)。
尽我所能给我以下结果
tosend = {"tn": 37537.6015625,
"d":
[{"Fa": 12, "nt": 37537.6015625, "ca": 1, "a": 4692.2001953125, "p": 4692.2001953125, "a": 1116861}
], "Tb": -27182.3984375}.
当我添加两个数据fuciona“[”。我需要以这种方式发送它,因为我无法更改服务器上的脚本。
我曾经使用 json.append。