【发布时间】:2013-09-19 06:09:55
【问题描述】:
我想浏览 Mongoose 存储在 Mongodb 中的原始数据。它去哪儿了?我有一个名为 Profile 的架构,其中存储了几个配置文件,但使用 Mongodb shell db.Profiles.find() 和 db.Profile.find() 不会返回任何内容。
架构,
var Profile = new Schema({
username : {type: String, index: true, required: true}
, password : {type: String, required: true}
, name : {type: String, required: true}
});
【问题讨论】: