![]() |
![]()
| ![]() |
![]()
NAMEReaction::UI::Controller::Role::RedirectTo DESCRIPTIONProvides 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 NOTICEThis 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; METHODSredirect_to $c, 'action_name', \@captures, \@args, \%query_parmsredirect_to $c, $action_object, \@captures, \@args, \%query_parmsredirect_to $c, [ Controller_name => 'action_name' ], \@captures, \@args, \%query_parmsWill 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. AUTHORSSee Reaction::Class for authors. LICENSESee Reaction::Class for the license.
|