这是我的mongodb数据库结构
coordinates : {
lat : {type: Number},
lon : {type: Number},
},
timeStamp :{type: Date} ,
accuracy :{type: Number},
deviceId : {type: Number},
deviceType : {type: String},
simId : {type: String}
我想在日期找到文件。
这是我从mongodb获取文档的查询
db.LocationInfoCollection.find({"deviceId":911441051085656,"timeStamp":{$gte:new Date("2015-09-07T12:56:44.000Z")}})
当我在mongodb返回空白数组上运行查询时。
以上查询完全在mongo shell上运行。但不是在我的代码中。
在mongo shell上输出
{
"timeStamp": "2015-09-08T12:31:24.000Z",
"accuracy": 5,
"deviceId": 911441051085656,
"simId": "123456",
"_id": "55eed361dfa115387dade3ce",
"coordinates": {
"lat": 20.998,
"lon": 75.5667
}
}
如何获取上述日期查询的文件。