如何在TinyDB,Python(NoSQL JSON数据库)中的嵌套对象中插入?

时间:2019-01-04 16:12:54

标签: python json database nosql tinydb

这里有文档:https://tinydb.readthedocs.io/en/latest/usage.html

我阅读了他们的文档,但似乎并没有解决(或者我听不懂)

我几乎想在 “ client_status_types” 中放入 “ step_1”:{} 。< / p>

所需的输出:

{
    "_default": {
        "1": {
            "client_status_types": {
                "step_1": {}
            }
        }
    }
}

我尝试过:

db.upsert({'Step 1':{}}, Query()['client_status_types'])

但这会导致

{
    "_default": {
        "1": {
            "client_status_types": {},
            "step_1": {}
        }
    }
}

0 个答案:

没有答案