0
我試圖使用另一種功能/方法來重定向&輸出通知,但它沒有奏效。它在自己的功能內正常工作。無法從另一種方法輸出閃光信息
def delete_sb
# @sb = SasaranBaru.find(params[:id])
# @sb.destroy
flash[:notice] = "fffff"
render_group("flash msg")
end
def render_group(notice)
logger.debug notice
flash[:notice] = notice
if params[:filter]
filter = prepare_filter_query(params[:filter])
redirect_to "/groups?#{filter.to_query}", notice: 'okokoko okokokok '
else
redirect_to "/groups", notice: 'hehehehe eheheheh'
end
end
在我看來沒有閃光值。
omg你是對的。 theres是另一個重定向。我在調試中錯過了一個紅色的請求 –