我在pymongo中使用insert_one函数将单个文档插入到集合中。该函数返回pymongo.results的示例。InsertOneResult从使用insert_one函数后返回的pymongo.results.InsertOneResult中,我如何检查文档是否在运行时插入时没有任何错误?
3htmauhk1#
检查inserted_id值
insert_result = connection[database][collection].insert_one(document) if insert_result.inserted_id: print("success")
1条答案
按热度按时间3htmauhk1#
检查inserted_id值