Help for this page

Select Code to Download


  1. or download this
        my $writer = $respond->(200, 
            [ 'Content-Disposition' => 'attachment; filename="data.csv"' ]
    + );
    
  2. or download this
        my $writer = $respond->([200, 
            [ 'Content-Disposition' => 'attachment; filename="data.csv"' ]
    +] );
    
  3. or download this
        my $writer = $respond->([200, 
            ['Content-Type' => 'text']] );