gpt4 book ai didi

node.js - Mongoose - 获取 _ids 列表而不是具有 _id 的对象数组

转载 作者:行者123 更新时间:2023-12-01 23:45:11 26 4
gpt4 key购买 nike

我想运行以下查询:

Group.find({program: {$in: [...]}}).lean().select('_id')

然后得到回复:

[{_id: ...}, {_id: ...}, {_id: ...}, {_id: ...}]

但是以下内容:

[..., ..., ..., ...] where ... represents an _id of a Group

当然,我可以只运行查询,然后循环访问我返回的组,但如果可能的话,我想在查询中执行此操作,因为这可能会更快。

谢谢大家!

最佳答案

Group.find({program: {$in: [...]}})
.distinct('_id')

db.collection.distinct(field, query)

Finds the distinct values for a specified field across a single collection and returns the results in an array.

Read more .

关于node.js - Mongoose - 获取 _ids 列表而不是具有 _id 的对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30677879/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com