我有一小段代码,在应用程序的几个模型类中使用:
validates_format_of :month, :with => /\d{4}\/(0[1-9]|1[0-2])/i, :message => "must be in the format YYYY/MM"
用什么方法来干燥这个?即,代码应该去哪里以及应该如何调用它?
我有一小段代码,在应用程序的几个模型类中使用:
validates_format_of :month, :with => /\d{4}\/(0[1-9]|1[0-2])/i, :message => "must be in the format YYYY/MM"
用什么方法来干燥这个?即,代码应该去哪里以及应该如何调用它?