如何创建带有属性的空集合

时间:2019-07-20 12:15:42

标签: mongodb

我想创建一个空集合,其属性包含键和值形式的field_Name和field_type。

db.createCollection(“ studentInfo1”,{                             属性:{

                                 stdid :{
                                         bsonType: "int" 
                                         } ,
                                  name : {
                                          bsonType : "string"
                                         }       
                                     } 
                                });

{     “ ok”:0.0,     “ errmsg”:“字段'properties'不是有效的收集选项。选项:{属性:{stdid:{bsonType:\” int \“},名称:{bsonType:\” string \“}}}”,     “代码”:72,     “ codeName”:“ InvalidOptions” }

1 个答案:

答案 0 :(得分:0)

如果您要创建脚本来完成工作;那么您可以执行以下操作:

db.createCollection("collectionName");
var collectionName = db.getCollection("collectionName");
var someData = { number: 10, name : "John" };
collectionName.insert(someData);