如何在 Rails 中实现 rufus-scheduler?

发布于 2024-11-14 01:06:11 字数 472 浏览 3 评论 0原文

计划正在运行,但出现错误“未定义的方法'do_something'”。有什么不对吗?

使用rails 3.

在 config/initializers/task_scheduler.rb:

require 'rubygems'
require 'rufus/scheduler'  
scheduler = Rufus::Scheduler.start_new
scheduler.every("10s") do
    JobThing.do_something
end

models/job_thing.rb 中: <代码>

class JobThing < ActiveRecord::Base
    def do_something
        puts "something"
    end 
end
Thanks

The schedule is running but errors "undefined method 'do_something'". What is not right?

Using rails 3.

In config/initializers/task_scheduler.rb:

require 'rubygems'
require 'rufus/scheduler'  
scheduler = Rufus::Scheduler.start_new
scheduler.every("10s") do
    JobThing.do_something
end

models/job_thing.rb:

class JobThing < ActiveRecord::Base
    def do_something
        puts "something"
    end 
end

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奈何桥上唱咆哮 2024-11-21 01:06:11

当您实际上在 JobThing 类中定义了实例方法时,您正尝试从 task_scheduler 调用类级方法。您可以定义一个类方法,如下所示:

class JobThing < ActiveRecord::Base
  def self.do_something
    puts "something"
  end
end

You're trying to call a class-level method from the task_scheduler when you've actually defined an instance method in your JobThing class. You can define a class method as below :

class JobThing < ActiveRecord::Base
  def self.do_something
    puts "something"
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文