db.createCollection(“ studentInfo1”,{ 属性:{
stdid :{
bsonType: "int"
} ,
name : {
bsonType : "string"
}
}
});
{ “ ok”:0.0, “ errmsg”:“字段'properties'不是有效的收集选项。选项:{属性:{stdid:{bsonType:\” int \“},名称:{bsonType:\” string \“}}}”, “代码”:72, “ codeName”:“ InvalidOptions” }
答案 0 :(得分:0)
如果您要创建脚本来完成工作;那么您可以执行以下操作:
db.createCollection("collectionName");
var collectionName = db.getCollection("collectionName");
var someData = { number: 10, name : "John" };
collectionName.insert(someData);