可以嵌套催收电话吗? MongoDB
可以在 MongoDB 中嵌套集合调用吗?
db.collection 'one', (err, one) ->
one.#do stuff
db.collection 'two', (err, two) ->
two.#do stuff
Can you nest collection calls in MongoDB?
db.collection 'one', (err, one) ->
one.#do stuff
db.collection 'two', (err, two) ->
two.#do stuff
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。
(据我所知)这是在 MongoDB 和 Node.js 中执行操作的最简单方法。
在您的示例中,
one
将包含第一个查询的结果,two
将包含第二个查询的结果。如果您正在进行大量嵌套查询,其中嵌套查询不依赖于外部查询的结果,您可以考虑使用 异步模块(或替代方案)用于并行化查询。
Yes.
This is (as far as I am aware) the simplest way of doing things in MongoDB and Node.js.
In your example
one
will contain the results of the first query, andtwo
the results of the second.If you are doing a lot of nested queries, where the nested query does not depend on the results of the outer query, you could consider using the Async module (or an alternative) to parallelise the query.