[ruby on rails] 跟我學之(10)資料輸入驗證

來源:互聯網
上載者:User

標籤:blog   http   ar   os   sp   for   on   檔案   資料   

這裡簡單加上幾個驗證,非空,最小長度,唯一

修改模型

修改app/models/post.rb檔案,如下:

class Post < ActiveRecord::Base  #attr_accessible :title, :content  validates :title, :context, :presence => true  validates :title, :length => { :minimum =>2}  validates :title, :uniqueness => { :message =>‘Already taken‘}end

這時運行服務,修改/新增模型,什麼都不填時,無法提交,也不報錯。

啥原因?

因為沒有把錯誤訊息顯示出來

修改views

修改app/views/posts/new.html.erb 檔案,如下:

<h1>Add a new post</h1><%= form_for @post do |f| %>  <%if @post.errors.any? %>  <h3>Errors</h3>  <ul>    <% @post.errors.full_messages.each do |msg| %>      <li><%=msg%></li>    <% end %>  </ul>  <%end%>  <p>   <%= f.label :title%><br/>   <%= f.text_field :title%>  </p>  <p>   <%= f.label :context%><br/>   <%= f.text_area :context%>  </p>  <p>   <%= f.submit "New Post"%>  </p>

即添加

 <%if @post.errors.any? %>  <h3>Errors</h3>  <ul>    <% @post.errors.full_messages.each do |msg| %>      <li><%=msg%></li>    <% end %>  </ul>  <%end%>

對於app/views/posts/edit.html.erb如法炮製。

 

運行服務

rails s -b 192.168.xxx.xxx -p 3000, 添加一條記錄,不填任何訊息直接提交,驗證訊息如下所示:

 轉載請註明本文來自:http://www.cnblogs.com/Tommy-Yu/p/4143036.html,謝謝!

[ruby on rails] 跟我學之(10)資料輸入驗證

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.