2

我有一小段代码,在应用程序的几个模型类中使用:

validates_format_of :month, :with => /\d{4}\/(0[1-9]|1[0-2])/i, :message => "must be in the format YYYY/MM"

用什么方法来干燥这个?即,代码应该去哪里以及应该如何调用它?

4

2 回答 2

1

看看Active Model Validator

于 2013-01-31T05:00:36.383 回答
0

您可以使用rails 中的观察者 来干燥您的代码。

于 2013-01-31T04:27:37.587 回答