使用authlogic时,不允许密码字段中的空格

时间:2010-07-16 12:13:21

标签: ruby-on-rails

我在我的Rails应用程序中使用authlogic作为我的用户登录功能。但authlogic允许密码空间,我的应用程序不需要这个。那我怎么能这样做呢?

谢谢!

1 个答案:

答案 0 :(得分:0)

您可以使用正则表达式来定义密码规则。

validates_format_of :password, :with => /{regular expression here}/, :if => :require_password?, :message => "Must not contain any spaces!"