Minimongo目前尚不支持$运算符

编程入门 行业动态 更新时间:2024-10-25 12:21:12
本文介绍了Minimongo目前尚不支持$运算符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有这份文件:

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

这是仅获取给定用户的州" 属性的查询:

This is query for getting only "state" attribute of given user:

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

在流星中,我收到此错误:

In meteor I am receiving this error:

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

如何在minimongo中没有错误的情况下重写以上查询?

How can I rewrite above query without having error in minimongo?

推荐答案

您可以喜欢

如果您只想获取没有键的值,请使用此

EDIT : if you just want to grab the values without keys, use this

Meteor.users.distinct('profile.friends.state', {_id: userId1, 'profile.friends._id': userId2});

通常情况下:

Meteor.users.findOne({_id: userId1, 'profile.friends._id': userId2}).select({ _id: 0, 'profile.friends.state':1 }).exec()

$不需要项目运营商

更多推荐

Minimongo目前尚不支持$运算符

本文发布于:2023-11-15 04:39:10,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1591217.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:尚不   运算符   Minimongo

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!