1. 程式人生 > >MongoDB 查詢時間段

MongoDB 查詢時間段

map.put("時間欄位", new Document("$gte",小的時間).append("$lte",大的時間));

例:

map.put("date", new Document("$gte",new Date(date.getTime()-1000*60*5)).append("$lte",date));