搜索结果
-
python scheduler 下次调用自己 定时执行修改job参数
e类型时,才可以修改参数 当前时间10秒后开始任务: ```python job = scheduler.add_job(func, 'cron', id=job_id, second=
-
python The list of positional arguments is longer than the target callable can handle (allowed: 0, given in args: 1)
## 错误原因: `任务函数需要接收一个参数` 添加任务: ```python scheduler.add_job(func, 'cron', args=['cron'], id