MongoDB不保存特定的日期时间

时间:2019-03-20 15:13:17

标签: python mongodb pymongo

我正在使用pymongo通过插入功能在mongo集合中保存插入文档的日期时间:

cur_article['time'] = datetime.datetime.utcnow()

def insert(self, collection, doc):
    collection = self.get_db_instance(collection)
    collection.replace_one({'_id':doc['_id']} , doc, upsert=True)
    return True

出于某种原因,尽管在插入后,日期时间仅显示到日期,而不是整个时间戳。我正在尝试查找为什么要指定特定的时间标签。 dbreturn

0 个答案:

没有答案