なぜこのモデルバリデーターですか?
validates_format_of :weight, :with => /\A\d{1,3}\.\d{0,2}\Z/, :on => :create
に一致する
12.4kg
それはできませんでした
編集:
ビューフォーム
<%= form_for :new_client do |f| %>
<% if @new_client.errors.any? %>
<div class="error_explanation">
<%= pluralize(@new_client.errors.count, "error") %> prohibited data from being send:
<% @new_client.errors.full_messages.each do |msg| %>
- <%= msg %>
<% end %>
</div>
<% end %>
<div class="field">
<%= f.label :weight %> <%= f.text_field :weight %>
<%= f.label :height %> <%= f.text_field :height %>
</div>
<div class="actions">
<%= f.submit %>
</div>
私はすべてのエラーをチェックしていると思いますが、重要なのは重大ではなく、エラーが発生するはずですが、そうではありません。