db.articles.aggregate([
{
$unwind: {
path: '$comments',
includeArrayIndex: 'arrayIndex...}
}
]);
结果:
[
{ title: 'this is article A', author: 'John', _id: 1, comments: 'a', arrayIndex...: NumberLong(0) },
{ title: 'this is article A', author: 'John', _id: 1, comments: 'b', arrayIndex...: NumberLong(1) },
{ title: 'this is article A', author: 'John', _id: 1, comments: 'c', arrayIndex