这里有文档: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": {}
}
}
}