exports.Post = mongolass.model('Post', {
author: { type: Mongolass.Types.ObjectId },
title: { type: 'string' },
content: { type: 'string' },
pv: { type: 'number' }
});
exports.Post.index({ author: 1, _id: -1 }).exec();// 按创建时间降序查看用户的文章列表 这里如何理解?
伊谢尔伦2017-04-17 16:06:27
exports.Post.index({ author: 1, _id: -1 }).exec();
上記のコードは複合インデックス (作成者昇順、_id 降順) を作成しています
ご参考までに。
MongoDB が大好きです!楽しむ!