Ruby on Rails Monday, January 27, 2020

You can define (in your controller) what the create action is after a successful save, and if you only want to do that for one format, and not the others, you can use the usual method for doing that in a controller, with:

if @foo.create(foo_params)
respond_to do |format|
if format.js
render status: :ok
else
redirect_to @foo
end
end
else
render :new
end

Using render status: :ok on success will not let anything else happen, no redirect, nothing changes on screen.

Walter


> On Jan 27, 2020, at 8:48 PM, fugee ohu <fugee279@gmail.com> wrote:
>
> I'm broadcasting to a javascript channel in my create action instead of redirecting but rails redirects to request referrer
>
> --
> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
> To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/1b7ecb28-06c2-4638-9a37-221bf911da28%40googlegroups.com.

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/0DFFE05C-4FD0-468A-9086-2FD0B6420749%40wdstudio.com.

No comments:

Post a Comment