Rails 3 rake 任务链接

发布于 2024-12-01 16:36:04 字数 255 浏览 0 评论 0原文

我尝试从菜单链接 rake 任务,但我不能,正如我在问题 Rails 3 link_to rake 任务

但它对我不起作用。这会产生错误 uninitializedconstant MyTasksController::Rake

有什么想法吗?

非常感谢你的帮助!

I tried to link a rake task from a menu but I couldn't, as I explained in the question Rails 3 link_to rake task

but It doesn't work for me. That produces the error uninitialized constant MyTasksController::Rake

any idea?

thanks a lot for you help!

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

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

发布评论

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

评论(1

瘫痪情歌 2024-12-08 16:36:04

我终于可以通过这种方式做到了:

class MyTasksController < ApplicationController
  def rake_it
    system ('rake backup:db:mysql')
    redirect_to :action => 'index', :controller => '/events'
  end
end

I finally could do it by this way:

class MyTasksController < ApplicationController
  def rake_it
    system ('rake backup:db:mysql')
    redirect_to :action => 'index', :controller => '/events'
  end
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文