我正在尝试使用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插入带整数字段的文档?