gpt4 book ai didi

mongodb - Minimongo 在预测中还不支持 $ 运算符

转载 作者:可可西里 更新时间:2023-11-01 09:17:43 24 4
gpt4 key购买 nike

我有这个文件:

...
"username" : "torayeff",
"profile" : {
...
"friends" : [
{
"_id" : "aSD4wmMEsFnYLcvmP",
"state" : "active"
},
{
"_id" : "ShFTXxuQLAxWCh4cq",
"state" : "active"
},
{
"_id" : "EQjoKMNBey7WPGamC",
"state" : "new-request"
}
]
...
}
...

这是只获取给定用户的“状态”属性的查询:

Meteor.users.findOne({_id: userId1, 'profile.friends._id': userId2}, 
{fields: {_id: 0, 'profile.friends.state.$':1} });

在 meteor 中我收到这个错误:

Exception while simulating the effect of invoking 'activateFriendship' Error: Minimongo doesn't support $ operator in projections yet...

如何在 minimongo 中重写上述查询而不出错?

最佳答案

使用$elemMatch用于查找嵌套数组,以及 $在你的投影中,所以查询如下:

Meteor.users.findOne({
"_id": userId1,
"profile.friends": {
"$elemMatch": {
"_id": userId2
}
}
}, {
"profile.friends.state.$": 1
})

关于mongodb - Minimongo 在预测中还不支持 $ 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29968721/

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