限制嵌入式文档大小
|
我有ѭ3的嵌入文档
photos
的MongooseJS
的user
模式:
var UserSchema = new Schema({
email : { type : String, index : \'unique\', set: toLower }
, login : { type : String, index : \'unique\' }
, password : { type : String }
, salt : { type : String }
, photos : [ PhotoSchema ]
, name : { type : String }
});
当我检索一个user
时,如何限制结果集中photos
的数量?
还是应该检索用户拥有的所有照片(即使有一百万张照片)?
没有找到相关结果
已邀请:
1 个回复
烷刨画颠离
2.仅加载您需要的用户照片:
文献资料