gpt4 book ai didi

mongodb - 使用 Node.js 和 MongoDB 同步数据库访问

转载 作者:太空宇宙 更新时间:2023-11-03 22:56:30 25 4
gpt4 key购买 nike

我想对 MongoDB 执行查找查询来检查特定条目是否在数据库中。但它调用的是异步回调函数。我怎样才能得到结果?

在此我没有同步获得实际结果。

最佳答案

如果您使用 Node.js,您应该以异步方式进行。

示例:

db_call(query, function (err, result) {
if (err) { throw new Error('db_error'); return; }
console.log(result); // do your stuff here
});

关于mongodb - 使用 Node.js 和 MongoDB 同步数据库访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8312599/

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