mongoose中方法幾乎都有回呼函數,但是回呼函數的參數資訊查詢不到,所以請問如何可以查到呢?
天蓬老师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 pot docn. 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.
曾经蜡笔没有小新2017-05-16 13:39:24
mongsoose的官方文件還蠻清晰的啊,你可以參考官方文件。一般查詢語句的話回呼函數是error和document兩個屬性。每個模組的內部實作在官方文件都是可以看到的,所以想知道傳入幾個參數然後不同參數的處理情況都是很好查看的。