Serving a response in Catalyst is pretty easy. Usually, we either stuff
a scalar into the response body, or just let the view take care of it like
this:
$c->res->body('dude, what's up?');
$c->forward($c->view); # Or just let RenderView handle it
# As is the default.
However, sometimes this is not practical for your purpose. Maybe you
(
Read more... )