ruby-on-rails – 使用js form rails呈现错误消息

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 使用js form rails呈现错误消息前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我将表单更改为远程,并且表单现在可以正常工作,如果出现错误,则不再显示错误消息.
<%= render 'shared/error_messages' %>

是否有良好的穿着来重新显示消息?

下面是我的控制器……

谢谢.

respond_to do |format|
  if @post.save
    format.js { render :js => "window.location = '#{edit_post_path @post}'" }
    format.html { redirect_to [:edit,@post] }
  else
    format.js { render :js => @post.errors }
    format.html { redirect_to '/',:error => "Could not save comment" }      
  end
end

解决方法

respond_to do |format|
  if @post.save
    format.js { render :js => "window.location = '#{edit_post_path @post}'" }
    format.html { redirect_to [:edit,@post] }
  else
    format.js { }
    format.html { redirect_to '/',:error => "Could not save comment" }      
  end
end

# update.js.erb

$(document).find("form").prepend('<%= escape_javascript(render("shared/error_messages",:formats => [:html])) %>');
原文链接:https://www.f2er.com/ruby/270482.html

猜你在找的Ruby相关文章