搜索

首页  >  问答  >  正文

node.js - 关于mongoose方法的回调函数的参数问题,如何知道参数个数以及参数代表什么含义呢?

mongoose中方法几乎都有回调函数,但是回调函数的参数信息查询不到,所以请问如何可以查到呢?

某草草某草草2751 天前587

全部回复(3)我来回复

  • 天蓬老师

    天蓬老师2017-05-16 13:39:24

    好好查文档应该能找到。我不使用mongoose驱动因此对它并不是十分熟悉,以下信息仅供参考:
    http://mongoosejs.com/docs/qu...

    Anywhere a callback is passed to a query in Mongoose, the callback follows the pattern callback(error, results). What results is depends on the operation: For findOne() it is a potentially-null single document, find() a list of documents, count() the number of documents, update() the number of documents affected, etc. The API docs for Models provide more detail on what is passed to the callbacks.

    回复
    0
  • PHP中文网

    PHP中文网2017-05-16 13:39:24

    1. 看文档

    2. 用TypeScript:

    回复
    0
  • 曾经蜡笔没有小新

    曾经蜡笔没有小新2017-05-16 13:39:24

    mongsoose的官方文档还是蛮清晰的啊,你可以参考官方文档。一般查询语句的话回调函数是error和document两个属性。每一个模块的内部实现在官方文档都是能看到的,所以想知道传入几个参数然后不同参数的处理情况都是很好查看的。

    回复
    0
  • 取消回复