cursor.isExhausted()
cursor.isExhausted()
重要
mongosh 方法
本页面提供
mongosh
方法的相关信息。这不是特定于语言的驱动程序(例如 Node.js)的文档。如需了解 MongoDB API 驱动程序,请参阅特定语言的 MongoDB 驱动程序文档。
返回: 布尔 如果文档仍在游标读取的当前文档批处理中,则
cursor.isExhausted()
返回false
。 否则,返回true
。
行为
可追加游标
您可以将isExhausted()
与可追加游标一起使用。 即使当前批处理中没有剩余文档,可可追加游标也会保持打开状态。 当没有剩余文档时,其他游标会自动关闭。
Change Streams
您不能将isExhausted()
与change stream一起使用。相反,要检查是否:
文档保留在change stream游标中,请使用
cursor.tryNext()
。change stream游标已关闭,请使用
cursor.isClosed()
。
有关change stream示例,请参阅监视示例和change stream图像示例。
示例
This section contains examples that use a cursor to read documents from a collection with temperature readings from a weather sensor. 您将看到isExhausted()
的示例。