我有一个索引为collection.create_index("type", unique=True)
的mongo数据库
数据库将记录作为字典列表。例如:data:[{{dic1},{dic2}]。下面的示例。
"data" : [
{
"time" : "10-Sep-2020 11:33:22",
"type" : "Med01",
"id":123
"expdate" : "01-Sep-2021",
"in_stock" "Y"
},
{
"time" : "10-Sep-2020 11:33:22",
"type" : "Med06",
"id":125
"expdate" : "10-Sep-2020",
"in_stock" "N"
},
{
"time" : "10-Sep-2020 11:33:22",
"type" : "LOC1",
"id":103
"expdate" : "10-Sep-2023",
"in_stock" "Y"
}
]
程序会动态检查一些数据并准备字典列表,然后将其插入数据库。
在第一次迭代中,我只有一个记录({dic1}
)已成功插入数据库。
在下一次迭代中,我将列表与新记录([{dic1}, {dic2}]
)附加在一起,并且不会将其插入数据库中并转到“重复”异常。
有人可以帮我解决这个问题吗?