登录
首页 >  Golang >  Go问答

Golang中的Robfig cron AddFunc无法实现动态执行任务

来源:stackoverflow

时间:2024-03-01 14:48:23 493浏览 收藏

从现在开始,努力学习吧!本文《Golang中的Robfig cron AddFunc无法实现动态执行任务》主要讲解了等等相关知识点,我会在golang学习网中持续更新相关的系列文章,欢迎大家关注并积极留言建议。下面就先一起来看一下本篇正文内容吧,希望能帮到你!

问题内容

我正在使用 robfig/cron 模块开发 cron 作业服务。我面临的问题是它无法动态运行 cron 作业函数。例如参考下面的代码

mapp := map[int]string{1: "one", 2: "two", 3: "three"}

    cr := cron.new()


    for integ, spell := range mapp {
        cr.addfunc("@every 2s", func() { 
          fmt.println("running cron spell:", spell, "integer:",integ)})

    }

    cr.start()

每2秒输出如下

running cron spell: three integer: 3
running cron spell: three integer: 3
running cron spell: three integer: 3

所有 3 个 cron 作业的输出都是相同的。我期望它能给出类似这样的输出。

Running Cron Spell: one Integer: 1
Running Cron Spell: two Integer: 2
Running Cron Spell: three Integer: 3

我不确定这是一个错误还是我做错了。我的目标是让 cron 作业根据配置的值动态运行。有什么解决方法可以使其成为我想要的输出吗?


正确答案


重新分配循环中的范围变量:

for integ, spell := range mapp {
        integ, spell := integ, spell
        cr.AddFunc("@every 2s", func() { 
          fmt.Println("Running Cron Spell:", spell, "Integer:",integ)})

    }

范围变量与每次迭代中重复使用的变量相同。如果关闭它,闭包(函数文字)将看到迭代中的最后一个值。

文中关于的知识介绍,希望对你的学习有所帮助!若是受益匪浅,那就动动鼠标收藏这篇《Golang中的Robfig cron AddFunc无法实现动态执行任务》文章吧,也可关注golang学习网公众号了解相关技术文章。

声明:本文转载于:stackoverflow 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
最新阅读
更多>
课程推荐
更多>