我正在使用Bootstrap-Sass以及Formstatic。我想到了一個錯誤信息會自動顯示在這張照片旁邊的Formstatic領域,如:here http://asciicasts.com/system/photos/227/original/E185I06.pngRails:表單驗證錯誤未顯示(使用Formtastic和Bootstrap-Sass)
但是,即使用戶將輸入無效,我的應用程序不顯示錯誤消息。這似乎是一個簡單的問題,但我無法弄清楚背後的原因。
PostController中
# POST /posts
# POST /posts.json
def create
@post = Post.new(params[:post])
@post.view = 0
@post.like = 0
@post.hate = 0
respond_to do |format|
if @post.save
@posts = Post.paginate(:page => params[:page], order: 'like desc', per_page: 10)
format.html { redirect_to posts_path }
format.json { render json: @post, status: :created, location: @post }
else
format.html { render action: "new" }
format.json { render json: @post.errors, status: :unprocessable_entity }
end
end
end
PostModel
validates :name, :presence => true
validates :content, :presence => true,
:length => { :minimum => 10, :maximum => 300}
_form(POST)
<% @post = Post.new %>
<%= semantic_form_for @post do |f| %>
<%= f.semantic_errors :name %>
<%= f.inputs do %>
<%= f.input :name, :label => 'name' %>
<%= f.input :content, :label => 'body' %>
<% end %>
<%= f.actions do %>
<%= f.action :submit, :button_html => { :class => "btn btn-primary" }, :as => :button %>
<%= f.action :cancel, :as => :link %>
<% end %>
在PostController中,我試圖刪除以下兩行
#format.html { render action: "new" }
#format.json { render json: @post.errors, status: :unprocessable_entity }
,並添加
render @post.errors
然後,我得到了
@messages={:name=>["can't be blank"], :content=>["can't be blank", "is too short (minimum is 10 characters)"]}>
所以我覺得這個問題可能是我的方式m渲染json是錯誤的。有人可以幫我解決這個問題嗎?