在pymongo上使用$ currentDate更新字段不起作用

时间:2015-03-13 00:10:20

标签: mongodb date mongodb-query pymongo

我希望使用$currentDate函数使用当前日期更新字段“UpdatedDate”,但它不起作用。下面的代码给出了错误:

  

OperationFailure:指定$ currentDate

的无效修饰符
db.BroHist.update({"Url":"about:blank","SiteType":{"$exists":True}},
                     {"$currentDate": {"UpdatedDate": {"$type":"date"}},
                     "$set": { "Host": "NewPage", "SiteType": "Other","SubSiteType": "NewPage Manual"}},
                     upsert=False,multi=True)

我使用此q& a来提出$ currentDate代码:Insert the $currentDate on mongodb with pymongo

0 个答案:

没有答案