2012-12-01 123 views
2

我剛開始練習的目的新的應用程序,並希望註冊頁面上的電子郵件字段驗證。我已經爲此搜索並得到了解決方案驗證電子郵件字段與Authlogic

class user < ActiveRecord::Base 
    validates_presence_of :username 
    validates_format_of :email, :with => /SomeRegexpYouGotFromGoogle/ 
end 

但我聽說Authlogic可以做得更好。我也有Authlogic的方法,即

Authlogic::ActsAsAuthentic::Email 

但我不知道如何使用它在我的項目。請給我一個解決我的問題的方向。

回答