我正在尝试过滤某个范围内的日期,但是我感到非常沮丧,以至于我现在只想查询小于当前时间的日期。
我有这个查询:
q = { 'recorded_timestamp': { '$lt': '2018-09-12T21:02:05.187Z' } };
我也尝试了以下查询,但没有一个起作用:
q2 = { 'recorded_timestamp': { '$lt': new Date() } };
q3 = { 'recorded_timestamp': { '$lt': new Date(Date.now()) } };
q4 = { 'recorded_timestamp': { '$lt': new Date().toISOString() } };
当我尝试做MyModel.find(q)
时,我什么也没回来。但是,如果我将该查询完全复制到MongoDB Shell中,那么我将获得预期的结果。
const promise = new Promise(resolve => {
const results = MyModel.find(q)
resolve(results);
});
return promise.then(results => {
return results; // results = [], but they shouldn't
});
这是怎么回事?
以下是该模型的相关摘录:
const MySchema = new Schema({
some_ID: {
type: String,
required: true
},
recorded_timestamp: {
type: Date,
required: true
}
}, { timestamps: true });
module.exports = mongoose.model('MyModel', MySchema);
这是插入到集合中的示例数据的摘要。
{ "some_ID": "16499", "recorded_timestamp": "2007-03- 13T07:39:52.959057" }
{ "some_ID": "17158", "recorded_timestamp": "2007-09- 12T15:31:18.244142" }
答案 0 :(得分:0)
您需要使用回调来查看结果。
MyModel.find(q, function(err, result) {
if (err) {console.log(err);}
console.log(result);
})
答案 1 :(得分:0)
事实证明,插入大量示例数据的JSON大文件正在将值存储为字符串(这就是q = { 'recorded_timestamp': { '$lt': '2018-09-12T21:02:05.187Z' } }
在MongoDB Shell中执行时起作用的原因。)
我将模式中的'recorded_timestamp'类型更改为字符串,并且现在可以正常工作了。
此线程帮助我诊断了我的问题:Mongoose Queries on Date Condition Have No Results, MongoDB Shell Works