ここでこのCGIコードを取得しました:
\$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "scripts/run.cgi",
"fnServerParams": function ( aoData ) {
aoData.push( { "mysqltablename": "MYSQL_123490dfasdf039a" } );
},
"iDisplayLength": 50
} );
run.cgi 側で key:value (mysqltable,MYSQL_123490dfasdf039a) にアクセスする方法がわかりません。以下を試しましたが、リストに表示されません。ヘルプ。
new CGI
...
my %paramstemp = $q->Vars;
open (FILE, ">/proj/hwmodels/unix_webserver/temp/asdf") ;
print FILE Dumper \%paramstemp;
close FILE;