gpt4 book ai didi

ruby-on-rails - 在不重定向的情况下在 Rails Controller 中发出警报

转载 作者:行者123 更新时间:2023-12-01 19:54:44 24 4
gpt4 key购买 nike

如果消息已保存/未保存,我只想闪现通知/错误,没有任何重定向,我怎么可能没有重定向:

  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

关于ruby-on-rails - 在不重定向的情况下在 Rails Controller 中发出警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7534889/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com