Rails 3:在哪里存储模型的共享方法?
我有一个方法“random_password”,我希望能够从 Rails 3 项目中的多个模型访问该方法。我只是想知道存储它的位置和存储位置的约定是什么。如何提供对其的访问。任何帮助表示赞赏。
I have a method "random_password" that I'd like to be able to access from multiple models in my rails 3 project. I'm just wondering what the convention is for where to store it & how to provide access to it. Any help appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要一个模块。这是共享的,可以被多个模型使用。它们通常放置在 /lib 中。
You would need a module. This is shared and can be used by multiple models. They are typically placed in /lib.