Help for this page

Select Code to Download


  1. or download this
    get '/test/csv' => sub {
        my $csv = "foo, bar, baz";
        send_file( \$csv, content_type => 'text/csv', filename => 'qux.csv
    +' );
    };
    
  2. or download this
    post '/test/csv' => sub {
        my $csv = "foo, bar, baz";
        send_file( \$csv, content_type => 'text/csv', filename => 'qux.csv
    +' );
    };