最佳答案
我正在运行来自 Python 的 MongoDB 更新,我有这样一行代码:
self.word_counts[source].update({'date':posttime},{"$inc" : words},{'upsert':True})
但它抛出了这样一个错误:
raise TypeError("upsert must be an instance of bool")
但是 True
对我来说就像一个 bool 的实例!
我应该如何正确地写这个更新?