按日期查詢 MongoDB ObjectId
MongoDB 中的 ObjectId 嵌入了其建立的時間戳。這允許您根據ObjectId的建立日期查詢文件。
詳細實作請參閱「將時間戳記彈出到ObjectId」。以下是 JavaScript 的簡要概述:
<code class="javascript">function objectIdWithTimestamp(timestamp) { if (typeof(timestamp) == 'string') { timestamp = new Date(timestamp); } var hexSeconds = Math.floor(timestamp/1000).toString(16); var constructedObjectId = ObjectId(hexSeconds + "0000000000000000"); return constructedObjectId } /* Find all documents created after midnight on May 25th, 1980 */ db.mycollection.find({ _id: { $gt: objectIdWithTimestamp('1980/05/25') } });</code>
以上是如何使用ObjectId根據建立日期查詢MongoDB文件?的詳細內容。更多資訊請關注PHP中文網其他相關文章!