如何使用pymongo在Mongodb中插入包含整数字段的文档并进行文档验证?

时间:2016-06-06 13:32:35

标签: mongodb pymongo-3.x

我正在尝试使用pymongo在MongoDB中插入文档验证。它有一个类型验证器来检查数据类型。

db.createCollection( "final",
 { validator: { $and:
     [
         { name: { $type: "string" } },
         { number: { **$type: "int"**} }
     ]
 }
} )

当我使用mongo shell插入文档时,我可以使用 NumberInt()在整数字段中插入数据。

db.final.insert({ name: "abc", number: **NumberInt(4465)**})

如何使用pymongo插入带整数字段的文档?

0 个答案:

没有答案