python报错内容:

The list of positional arguments is longer than the target callable can handle (allowed: 0, given in args: 1)

错误原因:

任务函数需要接收一个参数

添加任务:

scheduler.add_job(func, 'cron', args=['cron'],  id='sdf', minute='*/10')

错误的接收函数:

def func():
    # 开始

正确的接收函数:

def func(trigger):
    # 开始
最后修改于:2021-10-28 15:54
文章链接: https://oct.cn/view/117
版权声明: 本站所有文章除特别声明外。转载请注明来自 十月笔记