私は Perl と Javascript/Jquery/Ajax の完全な初心者です。例として、文字列 varexampleString
を test.pl に送信すると、スクリプトは文字列をファイルに書き込みます。
function sendToScript{
var exampleString = 'this is a string';
$.ajax({
url: './test.pl',
data: exampleString,
success: function(data, textStatus, jqXHR) {
alert('string saved to file');
}
}
test.pl
#!/usr/bin/perl -w
use strict;
#How do I grab exampleString and set it to $string?
open (FILE, ">", "./text.txt") || die "Could not open: $!";
print FILE $string;
close FILE;
どんな助けでも大歓迎です。