Mongodb Collection和Schema

时间:2015-12-12 06:48:14

标签: arrays mongodb mongoose

我希望我的收藏品能够像这样

movies : {
     spiderman : ["good" , " bad" , " excellent"] ,
     marvels   : ["good" , "ok" ],
     ironman   : ["good" , "bad"]
}

我尝试使用我的架构

movies : {
    spiderman : [String],
    marvels   : [String],
    ironman   : [String]
}

但我没有成功。抱歉,如果我对Mongo和Stackoverflow做了任何新错误

0 个答案:

没有答案