在哪里放置模型“实用程序”? Ruby on Rails 中的函数,是否在 rake 任务中也需要?
这是以下问题的第二部分:
去哪里将模型“实用程序”函数放入 Ruby on Rails
问题是,我还需要从 rake 任务访问这些实用程序函数。使用另一个线程中接受的技术,从 rake 任务访问我的模型时出现“未定义方法”错误。
解决这个问题的最佳方法是什么? 谢谢
This is a 2nd part to the following question:
Where to put model "utility" functions in Ruby on Rails
Problem is, I need access to these utility functions from a rake task as well. Using the accepted technique in in the other thread, I get an "undefined method" error when accessing my model from a rake task.
What is the best way to fix this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能需要将 rake 任务定义为依赖于 Rails 环境:
默认行为是几乎不加载任何内容,因此除非您要求,否则您将无法访问模型。
You probably need to define your rake task as dependent on the Rails environment:
The default behavior is to load almost nothing, so you won't have access to your models unless you ask for it.