Mongoose回调函数如何知道第二个参数是db.query结果?
匿名回调函数如何知道下面示例中的“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个位置参数。它使用两个参数调用您的函数,这是第二个参数。
It's a positional parameter. It calls your function with two parameters, and that's the second one.