我是 Perl 和 Javascript/Jquery/Ajax 的新手。例如,我想将字符串 var 发送exampleString
到 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');
}
}
测试.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;
任何帮助将非常感激。