如何在创建操作后执行 rake?

发布于 2024-11-08 03:16:57 字数 84 浏览 0 评论 0原文

我需要在创建操作后执行 rake。

我的 lib/tasks 目录中有一个 .rake。如何告诉 Rails 在创建操作后运行 rake?

I need to perform a rake after a create action.

I have a .rake in my lib/tasks dir. How do I tell rails to run the rake after a create action?

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

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

发布评论

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

评论(3

农村范ル 2024-11-15 03:16:57

您可以在创建操作后从控制器调用

system("rake_path your_command_here")

。如果成功,系统调用将返回 true。

You can call from your controller

system("rake_path your_command_here")

after create action. The system call returns true if successful.

深府石板幽径 2024-11-15 03:16:57

您可以使用两种方式从控制器调用

 1. system("rake_path your_command_here")
 2. `rake_path your_command_here`

You can call from your controller using two ways

 1. system("rake_path your_command_here")
 2. `rake_path your_command_here`
多像笑话 2024-11-15 03:16:57

你可以使用

def create
  system "rake apn:notifications:deliver"
end

You can use

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