NAME
Reaction::UI::Controller::Role::RedirectTo
DESCRIPTION
Provides a redirect_to
method, which aims to be a more convenient way to create internal redirects vs Catalyst::uri_for
and Catalyst::Response::redirect
DEPRECATION NOTICE
This method was separated out of Catalyst::Controller to facilitate deprecation. The behavior of this method is, by design, flawed and you should aim to replace any instances of it in your codebase;
METHODS
redirect_to $c, 'action_name', \@captures, \@args, \%query_parms
redirect_to $c, $action_object, \@captures, \@args, \%query_parms
redirect_to $c, [ Controller_name => 'action_name' ], \@captures, \@args, \%query_parms
Will create a uri from the arguments given and redirect to it without detaching. If captures and arguments are not explicitly given, the ones from the current request will be used. If query-parameters are not given, none will be used.
The first argument after $c
cab be one of three, the name of an action present in the controller returned by $c->controller
, an action object, or an array reference contraining 2 items, a controller name and an action name.
AUTHORS
See Reaction::Class for authors.
LICENSE
See Reaction::Class for the license.