validates_format_of :order_of_importance, :on => :create, :with => /^[1-3]{3}$/,
:message => "Order of Importance must have 3 Digits"
現在我有它驗證所使用的數字或者是1, 2, 3
,但我想也確保這些數字不僅使用,但每一個只能使用一次。如何驗證一系列唯一的數字?
例如:
應該是工作號碼
2 3 1
1 3 2
1 2 3
不應該被工作號碼:
1 1 2
2 2 1
3 3 3
是否有您要使用特定的原因正則表達式?我會使用一種方法。 – 2011-10-17 12:17:50
沒有具體原因。這正是我開始的。我想這到了一個方法更重要的地步。既然如此,你將如何構建這個方法呢? – Trip 2011-10-17 12:19:15