如何向设计添加验证?
我想向用户表的信息添加验证。 EG 电子邮件必须包含 6..20 或其他 如何将它们添加到 Devise gem 中?
我知道使用的是 :validatable,但是我不确定选项是什么。
我应该添加正常验证吗 `验证
I would like to add validations to the info of the tables of the user.
E.G. email must be with 6..20 or whatever
How do I add these to the Devise gem?
I know that the use is with :validatable, however i'm not sure what the options are.
should I add normal validations
`validates
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案写在此处。
简而言之:
要与设计列交互,请编辑此文件:
/config/initalizers/devise.rb
否则,只需将您的列添加为
attr_accessible
并编写您的正常验证。Answer are written here.
In a nutshell:
to interact with devise columns, edit this file:
/config/initalizers/devise.rb
otherwise, just add your column as
attr_accessible
and write your normal validations.