lonlat ポイントのリストを含むテキスト ファイルがあります。これを ajax call を介して perlscript に送信したい。どうやってするの ?私のコードは
$.ajax({type:"POST",
url:"softTouchurl",
type:"Text",
data:{file:'pointsArray.txt',action:'showPoints'},
success:function(response){
if(response.success) {
alert("success");
}
}
});