是否可以仅从 mongo 文档中检索唯一值?
我猜答案是否定的,但这可能吗?对于如此简单的事情来说,代码似乎太多了:
ary = []
obj.all.each {|o| ary << o[:foo]}
ary.uniq!
I'm guessing the answer is no, but is this possible? It seems like this is too much code for something so simple:
ary = []
obj.all.each {|o| ary << o[:foo]}
ary.uniq!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
与 Mongo 分开,您可以在 Ruby 中更好地编写相同的功能,如下所示:
编辑:看起来 Mongo 通过
distinct
支持此功能:请参阅 文档 了解更多详细信息。
Separate from Mongo, you can write that same functionality in Ruby better as:
Edit: It looks like Mongo supports this via
distinct
:See the documentation for more details.