不顯示simple_form錯誤通知我使用Zurb基金會和簡單的形式使用zurb基礎
<%= simple_form_for @complaint do |f| %>
<%= f.error_notification %>
<%= f.association :company, as: :radio, label: false %>
<%= f.input :country, priority: ["United States"] %>
<%= f.input :city %>
<%= f.input :client, placeholder: 'Coca-Cola' %>
<%= f.input :body %>
<%= f.button :submit %>
<% end %>
在我的模型:
class Complaint < ActiveRecord::Base
belongs_to :company
attr_accessible :body, :city, :client, :country, :company_id
validates :company, presence: { message: 'Company cannot be blank!' }
validates :body, presence: true
validates :country, presence: true
validates :city, presence: true
end
當我點擊提交一個空的形式,我希望有錯誤的說'公司不能空白!'等等
我是不是用<%= f.error_notification %>
不正確? 我怎樣才能到那裏顯示錯誤?
對不起,我不再工作在該回購,並沒有控制器代碼。 – emailnitram