Rails 3 中处理每个用户设置的最佳方法
我正在 Rails 3 中开发一个应用程序。在该应用程序中,允许用户使用其现有的电子邮件帐户设置发送电子邮件。为每个用户的凭据定义每个用户设置的最佳方法是什么?
问候, 利维乌
I'm developing an application in Rails 3. In the application, users are allowed to send e-mails using their existing email account settings. What's the best approach to define per user settings for every user's credentials?
Regards,
Liviu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您可能希望为用户提供更改/更新其设置的选项,他们应该进入模型。之后,就看口味了……
如果你只有几个设置,你可以将它们直接存储在用户模型中。如果您有很多设置,则可以有一个
belongs_to
User 的单独 UserProfile 模型。Given you'd probably want to offer the option for users to change/update their settings, they should go in a model. After that, it comes down to taste...
If you have only a few settings, you could store them directly in the User model. If you have lots of settings, you could have a separate UserProfile model that
belongs_to
User.