Selbst wenn ich wie folgt schreibe, wird die Flash-Nachricht nicht angezeigt und msg ist im Abfrageparameter enthalten.
redirect_to action: :new, alert: 'msg'
Beschreiben Sie wie folgt.
redirect_to({:action => :new} , {:alert => 'msg'})
Verwenden Sie redirect_to wie folgt.
redirect_to(options = {}, response_options = {})
Wenn Sie es wie am Anfang schreiben, wird die Flash-Nachricht auch als erstes Argument behandelt.
redirect_to action: :new, alert: 'msg'
↓
redirect_to({:action => :new, :alert => 'msg'}, { })
Recommended Posts