我希望使用$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