Perl6 Bailador框架(2):路径设置
use v6; use Bailador; =begin pod get表示是get发送 post表示是post发送 get/post 后面的 '/name' 表示是路径 => sub {} 是一个匿名函数, 返回里面的内容 =end pod get '/admin' => sub { 'This is admin page' } get '/about' => sub { 'This is about me page' } baile;
注意这里没有设置根目录 '/'
打开时根目录会返回 'Not Found'
这个只存在/admin或/about页面