Như thế này:
var currentTime = new Date();
items.find({
'time.start': {$lt: currentTime},
'time.end': {$gt: currentTime}
});
Thao tác này sẽ tìm thấy các tài liệu có thời gian hiện tại giữa start
và end
thời gian trong tài liệu.
Như thế này:
var currentTime = new Date();
items.find({
'time.start': {$lt: currentTime},
'time.end': {$gt: currentTime}
});
Thao tác này sẽ tìm thấy các tài liệu có thời gian hiện tại giữa start
và end
thời gian trong tài liệu.