Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: Newbie Catalyst dispatch question

by Your Mother (Archbishop)
on Jun 23, 2012 at 03:44 UTC ( [id://977934]=note: print w/replies, xml ) Need Help??


in reply to Newbie Catalyst dispatch question

The docs are much better than they used to be but they still require too much caffeine to absorb. Chained Examples.

package MyApp::Controller::App::Reporting; use Moose; use namespace::autoclean; BEGIN { extends "Catalyst::Controller" } sub by_id :Chained("/") :PathPart("reporting") :CaptureArgs(1) { my( $self, $c, $id ) = @_; $c->stash( ohaid => $id ); } sub reporting :Chained("by_id") PathPart("") Args(0) { my( $self, $c ) = @_; $c->response->body("OHAI " . $c->stash->{ohaid}); } __PACKAGE__->meta->make_immutable; __END__ [debug] Loaded Chained actions: .-------------------------------------+------------------------------- +-------. | Path Spec | Private + | +-------------------------------------+------------------------------- +-------+ | /reporting/* | /app/reporting/by_id (1) + | | | => /app/reporting/reporting + | '-------------------------------------+------------------------------- +-------' moo@cow[1148]~>curl http://localhost:3000/reporting/DER OHAI DER

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://977934]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (5)
As of 2024-04-24 06:01 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found