MongoDB投影有$slice如何只显示该字段

Posted chenchuxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MongoDB投影有$slice如何只显示该字段相关的知识,希望对你有一定的参考价值。

简单的投影

稍微用过MongoDB的都知道,投影很简单,就直接

db.student.find({_id:ObjectId(‘5a5085aed8f10c1a6cc0395b‘)},{comments: 1})

添加$slice的投影

然而,当我要给comments分页($slice)如何做呢?

错误的做法

以下给出了错误的做法

db.student.find({_id:ObjectId(‘5a5085aed8f10c1a6cc0395b‘)},{comments: 1, comments:{$slice:[0,1]}})

这样写的话,就只有分页,然后字段显示全部

原因
对象中,同名字段,后者会覆盖前者。所以{comments: 1, comments: {$slice:[0,1]}}中实际生效的只有comments:{$slice:[0,1]}
同理,如果两个调换位置变成{comments: {$slice:[0,1]}, comments: 1},那么实际生效的就是comments: 1没有分页

正确的写法

$elemMatch,可以做到

db.student.find({_id:ObjectId(‘5a5085aed8f10c1a6cc0395b‘)}, {comments:{$slice:[0,1]},  $elemMatch:1})

对于$elemMatch官网文档也没有说明此用法。所以我也不知道这个算不算歪门邪道吧哈哈。

有其他更优雅的写法,求告知

spring中如何用

在spring中,Query的拼装如下。要用正常的include去写。

Query query = new Query();
query.addCriteria(Criteria.where("_id").is(new ObjectId("5a5085aed8f10c1a6cc0395b")));
query.fields().slice("comments", 0, 1);
query.fields().include("$elemMatch");

错误的拼法

query.fields().slice("comments", 0, 1).elemMatch("comments", new Criteria());

这样拼完会变成

db.student.find({_id:ObjectId(‘5a5085aed8f10c1a6cc0395b‘)}, {comments:{$slice:[0,1]},  $elemMatch: {}})

而这个语句在MongoDB直接执行的话会报错



以上是关于MongoDB投影有$slice如何只显示该字段的主要内容,如果未能解决你的问题,请参考以下文章

Mongodb学习

文档上缺少字段的 MongoDB 投影

使用Spring-Integration获取具有某些字段(投影)的mongodb文档(仅限注释)

即使指定了投影,Mongodb 也会返回所有字段

使用 Mongoose 在投影中包含 Mongodb“_id”字段

使用 Mongoose 在投影中包含 Mongodb“_id”字段