标签: mongodb type-conversion
我想将timestamp值用作整数值,即总秒数/毫秒(转换后的时间戳值为秒/毫秒),并将其与$divide accumulator/operator一起使用
我尝试了this code,但收到了错误
pymongo.errors.OperationFailure:$ divide只支持数字类型,不支持date和int
我google将datetime转换为int虽然得到的结果很少
那么我们怎样才能绕过它,即通过时间戳获得$ divide工作?