原理是设置一个任务标识,定一个时间,把任务标识重置为1,执行任务后把任务标识赋值为0。
function renwu()
tt = os.date("*t", time)
if tt.hour == 6 then
if tt.min == 16 or tt.min == 17 or tt.min == 18 or tt.min == 19 or tt.min ==19 then
logDebug('每日任务重置 ')
rwbs=1
end
end
if tt.hour == 6 then
if rwbs==1 then
logDebug('开始做每日任务 ')
renwu()
rwbs=0
logDebug('完成每日任务 ')
end
end
end