Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Mojolicious Routing

  • get '/list/home' a route with an exact match
  • get '/item/:id' a route with a placeholder won't match . or /
  • get '/phone/#number' also accepts . as in /phone/1.234.567890
  • *get '/path/anything' also accepts /
$c->param('id');
$c->param('number');
$c->param('anything');