我正在使用 Bootstrap-Sass 和 Formstatic。我认为应该在带有 Formstatic 的字段旁边自动显示一条错误消息,如下图所示:(来源:asciicasts.com)
但即使用户输入了无效输入,我的应用程序也不会显示错误消息。这似乎是一个简单的问题,但我无法弄清楚背后的原因。
后控制器
# 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
后模型
validates :name, :presence => true
validates :content, :presence => true,
:length => { :minimum => 10, :maximum => 300}
_form(发布)
<% @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)"]}>
所以我认为问题可能是我渲染 json 的方式是错误的。有人可以帮我解决它吗?