任何人都可以解释为什么下面的查询给出了下面的结果?它与时区有关吗?解决这个问题的最佳方法是什么?
我所要做的就是获取2016年10月2日的记录。
> db.appointments.find({"appointment": {$gte: new Date("10/2/2016"), $lt: new Date("10/3/2016")}}).pretty();
{
"_id" : ObjectId("580ee2a0a6f299d25aeceb42"),
"appointment" : ISODate("2016-10-03T00:30:00Z")
}