Help for this page

Select Code to Download


  1. or download this
    ...
    use JSON;
    ...
    
    # or if using Mojolicious
    $c->render(json => $ret_data);
    
  2. or download this
    my $ret_data = {
      'status' => -1, # file was too big and I truncated it
    ...
      'message-html' => "<b>success blah blah for $fileame but truncated</
    +b>",
      'data' => truncate($data)
    };