如何使用 Mongoose 进行查询,然后使用该文档执行其他操作?

发布于 2024-11-04 09:32:23 字数 303 浏览 2 评论 0原文

User.findOne({}, function(err, doc){
   //do stuff with "doc" here.
});

这就是我目前的做法。但是如果我想拿“doc”,然后做点什么呢?

User.findOne({}, function(err, doc){
   //do stuff with "doc" here.
});
runAnotherFunction(doc.name)
doc...

如何从“function”部分中取出“doc”?

User.findOne({}, function(err, doc){
   //do stuff with "doc" here.
});

That's the way I currently do it. But what if I want to take "doc", and just do stuff.

User.findOne({}, function(err, doc){
   //do stuff with "doc" here.
});
runAnotherFunction(doc.name)
doc...

How do I take "doc" out of the "function" part?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

反目相谮 2024-11-11 09:32:23

节点是事件驱动的,它不是您可能习惯的过程代码。在 mongoose 完成检索记录之前,调用 findOne 已经可以很好地执行。需要对文档执行的任何操作都应该在回调中发生(“函数”部分)。

Node is event driven, it's not procedural code like you're probably used to. Before mongoose can finish retrieving a record execution can already be well passed the call the findOne. Anything that needs to be done with the doc should happen in the callback (The "function" part).

只是偏爱你 2024-11-11 09:32:23

你可以尝试“一步”,
https://github.com/creationix/step

这使得控制逻辑流变得更容易。

请参阅以下示例:

异步 Nodejs 查询和处理结果

you can try "step" ,
https://github.com/creationix/step

This makes it easier to control logic flow.

See this for example :

async nodejs querying and processing results

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