我有一个表单,提示用户输入标题和:this
或:that
。用户不能同时输入这两个字段。
<% f.input :title%>
<% f.input :this %>
<% f.input :that%>
因为我:title
在我的模型中有
validates :title, :presence => true
我如何通过验证either :this or :that
我有一个表单,提示用户输入标题和:this
或:that
。用户不能同时输入这两个字段。
<% f.input :title%>
<% f.input :this %>
<% f.input :that%>
因为我:title
在我的模型中有
validates :title, :presence => true
我如何通过验证either :this or :that