gacky's report
mindiagacky's report見出し語

validates_presence_of

gacky · 2012-04-02 更新

バリデーションを設定できる。
この場合は空ならエラーになる。

エラー出力

<% if @hoge.errors.any? %>
  <div id="error_explanation">
    <h2><%= pluralize(@hoge.errors.count, "error") %> prohibited this hoge from being saved:</h2>
    <ul>
      <% @hoge.errors.full_messages.each do |msg| %>
      <li><%= msg %></li>
      <% end %>
    </ul>
  </div>
<% end %>

関連する見出し語