如何在创建操作后执行 rake?
我需要在创建操作后执行 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以在创建操作后从控制器调用
。如果成功,系统调用将返回 true。
You can call from your controller
after create action. The system call returns true if successful.
您可以使用两种方式从控制器调用
You can call from your controller using two ways
你可以使用
You can use