比如说这样:
{ _id : ObjectId(…), author : 'Rei’, content : 'content text’, comments : [ { name : ‘Asuka’ email : '…’, web_site : '…’, content : 'comment text’} ] } comments 项是内嵌在 post 项中。该如何定义数据库模型?nodejs怎么插入和解析?
2 回复
比如说这样:
{ _id : ObjectId(…), author : 'Rei’, content : 'content text’, comments : [ { name : ‘Asuka’ email : '…’, web_site : '…’, content : 'comment text’} ] } comments 项是内嵌在 post 项中。该如何定义数据库模型?nodejs怎么插入和解析?