我有一个使用 remote_form_for 标签提交的表单。
看法
<% form_remote_tag(:url => { :action => 'create' }) do %>
a bunch of fields
<% end %>
控制器
def create
if @greeting.can_save?
respond_to do |format|
format.html {redirect_to board_link(@board)}
format.js #close the iframe and reload the parent
end
else
respond_to do |format|
format.html {redirect_to :action => 'new'}
format.js #show the errors on the form
end
end
end
创建.rjs
page << "parent.$.fancybox.close();"
对于使用正确信息提交的表单,一切正常。但我需要显示无效提交的错误消息。
表单未通过验证时,如何在表单上显示错误消息?
提前致谢。