Mongoose回调函数如何知道第二个参数是db.query结果?

发布于 2024-10-19 18:26:13 字数 232 浏览 1 评论 0原文

匿名回调函数如何知道下面示例中的“item”(或者实际上是 Mongoose 查询之后回调函数中的第二个参数,因为它们可以被称为任何内容)是/应该是来自数据库的结果,如果有的话?因为我们实际上可以将“项目”称为任何东西,所以我在这里看不到沟通线路。

谢谢!

Item.find( { name: req.body.item.name }, function(err, item) {

How does the anonymous callback function know that 'item' (or really the second argument in the following callback function after Mongoose queries since they can be called anything) in the below example is/are supposed to be the result(s) from the database, if any? Since we can call 'item' anything really, I don't see the line of communication here.

Thanks!

Item.find( { name: req.body.item.name }, function(err, item) {

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

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

发布评论

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

评论(1

岁月流歌 2024-10-26 18:26:13

这是一个位置参数。它使用两个参数调用您的函数,这是第二个参数。

It's a positional parameter. It calls your function with two parameters, and that's the second one.

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