Rails 设计独特的电子邮件

发布于 2024-12-13 04:55:05 字数 224 浏览 0 评论 0原文

是否有一种内置方法可以让我检查给定的用户名或电子邮件对于所有现有的用户名和电子邮件是否是唯一的。 (假设我在制作模型时不想验证) 我可以说

if user.is_unique?
     execute some code here
end

我使用的是 Rails 3,我的 gemfile 只是说 gem 'devise' (所以它是最新的),如果该信息很重要的话

Is there a built-in method in devise that i can check whether or not a given username or email is unique against all existing usernames and emails. (Say if i don't want to validate when making the model)
i can just say

if user.is_unique?
     execute some code here
end

Im using rails 3, and my gemfile just says gem 'devise' (so it gets most recent), if that info is important

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

负佳期 2024-12-20 04:55:05

我认为没有这样的方法,但你可以自己将其添加到 User 模型中。试试这个:

def is_email_unique?
  !(User.all - [self]).map(&:email).include?(self.email)
end

I think there is no such a method but you can add it by yourself to User model. Try this:

def is_email_unique?
  !(User.all - [self]).map(&:email).include?(self.email)
end
时光匆匆的小流年 2024-12-20 04:55:05

您可以在您的用户模型中执行此操作:

def is_unique?
  !User.exists?(:email => email) && !User.exists?(:username => username)
end

You could do this in your User model:

def is_unique?
  !User.exists?(:email => email) && !User.exists?(:username => username)
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文