Rails 3 中处理每个用户设置的最佳方法

发布于 2024-11-13 08:42:50 字数 103 浏览 2 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

空心↖ 2024-11-20 08:42:50

鉴于您可能希望为用户提供更改/更新其设置的选项,他们应该进入模型。之后,就看口味了……

如果你只有几个设置,你可以将它们直接存储在用户模型中。如果您有很多设置,则可以有一个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.

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