我的 JSON 字典如下所示:
{
"end": 1,
"results": [
{
"expired": false,
"tag": "search"
},
{
"span": "text goes here"
}
],
"totalResults": 1
}
这是这条线的产品:
tmp_response['results'].append({'span':"text goes here"})
我的目标是将“跨度”键放入“结果”列表中。当 totalResults > 1 时,这是必要的。
{
"end": 1,
"results": [
{
"expired": false,
"tag": "search",
"span": "text goes here"
},
],
"totalResults": 1
}
我尝试了几种方法,例如使用'dictname.update',但这会覆盖'results'中的现有数据。