ruby-on-rails – 在rails控制器中提高警报,无需重定向

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在rails控制器中提高警报,无需重定向前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如果消息是/没有保存,没有任何重定向,我只想闪烁一个通知/错误,我怎么没有重定向
respond_to do |format|
  if @message.save
    format.html { redirect_to request.referer,:notice => 'Message sent!' } #dont want redirect
  else
    # error message here
  end

解决方法

使用flash.now:
if @message.save
  flash.now[:notice] = 'Message sent!'
else
  flash.now[:alert] = 'Error while sending message!'
end

respond_to do |format|
  format.html { # blahblah render }
end
原文链接:https://www.f2er.com/ruby/272312.html

猜你在找的Ruby相关文章