可以嵌套催收电话吗? MongoDB

发布于 2024-12-07 01:39:07 字数 174 浏览 0 评论 0原文

可以在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

木有鱼丸 2024-12-14 01:39:07

是的。

(据我所知)这是在 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, and two 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文