我有以下查询在我的本地完全正常,但在生产(现场),我没有得到预期的结果。
var startDay = new Date();
start.setHours(0, 0, 0, 0);
var endDay = new Date();
end.setHours(23, 59, 59, 999);
CheckBill.find({
status: true,
nextDueDate: {
"$gte": startDay,
"$lt": endDay
}
})
.populate('customer')
.then(function(docs) {
console.log(docs)
})
.catch(function(err) {
console.log(err);
});
请帮忙