我在我的应用脚本中为特定任务定义date = new Date();
.
.
.
old_date < today_date
。
任务是在old_date&lt;时发送电子邮件today_date。但它正在处理old_date&lt; = today_date。如何编写确切的查询?任何帮助都将非常感激。
* dots(。)是其他代码语句。
答案 0 :(得分:1)
日期currentDate = new Date()现在为您提供时间。
旧日期&lt;对于在新的Date()调用之前发生的所有事情,currentDate都是true。 因此,一小时前发生的事情也会被召唤。
您希望currentDate今天上午00:00。 这可以这样做:
var d = new Date();
d.setHours(0,0,0,0);
如果遇到一些问题,请记住时区。
答案 1 :(得分:0)
currentDate = newDAte()从此可以定义今天的日期