MongoDB 通过传递数组的参数来搜索文档
Posted
技术标签:
【中文标题】MongoDB 通过传递数组的参数来搜索文档【英文标题】:MongoDB Search for documents by passing parameters of an array 【发布时间】:2020-09-06 09:24:54 【问题描述】:Matches.find(
user_one: [
user: userId,
punctuation: $gt: -1 ,
,
],
,
如果我运行这个查询,我不会得到预期的结果,但是,如果我运行另一个,我会找到它。
Matches.find(
user_one: [
user: userId,
punctuation: 0,
,
],
,
无论标点符号如何,如何搜索“user_one”数组中的“user”等于 userId 的文档?
【问题讨论】:
【参考方案1】:这看起来不错。
Matches.find( 'user_one.user': userId )
【讨论】:
以上是关于MongoDB 通过传递数组的参数来搜索文档的主要内容,如果未能解决你的问题,请参考以下文章
MongoDB 操作符 $unwind 展开数组(agregation)