0
我試圖創建一個驗證,如果當前對象country_code
設置爲ES
,強制:phone
字段爲9位長。驗證ActiveRecord屬性長度deppending在其他對象屬性
我試圖做這樣的事情,但它不起作用。
validates_length_of :phone, :is => 9, :message => "number needs to be at least 9 digits." if self.country_code == "ES"