我第一次在这里发帖!
我有一个表单,有很多字段,除非发生任何验证错误,否则它很有用......
如果引发“validates_presence_of”,则会打开“ActiveRecord :: RecordInvalid in ...”页面并离开我的表单......
如何在同一页面/表格上显示错误(一如既往)?
一切顺利!
我的控制器
if check_cadastro == "Válido para cadastro"
code....
if @usuario.save!
session[:usuario_id] = @usuario.id
cookies[:token] = @usuario.token
render :action => "edit"
else
render "new"
end
end
我的观点
<%= simple_form_for @usuario do |f| %>
<%= f.error_notification %>
<div ><%= f.input :cnpj, input_html: { class: 'txt' } , :label => false %></div>
<div ><%= f.input :razaosocial, input_html: { class: 'txt' } , :label => false %></div>
<% end %>