PHP AJAX POST请求返回错误

时间:2014-03-04 21:48:45

标签: php jquery ajax

我正在使用PHP从表单处理AJAX POST请求,并需要它来发回JSON对象。我的PHP代码。

<?php

function main(){
$a = $_POST['args'];
$myFile = "jsonargs.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $a);
fwrite($fh, "\n");
fwrite($fh, "-o ./json\n");
fwrite($fh, "-j\n");
fclose($fh);
$output = shell_exec('command 2>&1; ./syn-bin/synoptic-jar.sh -c jsonargs.txt ' . $_FILES["file"]["tmp_name"]);
$json = file_get_contents('./json.json');
header('Content-Type: application/json');
echo json_encode($json);

}

main();

?>

但是,当我使用jquery的ajax表单插件进行ajax调用时,我的错误函数被调用。如果我将其作为普通表单提交而不是进行ajax调用,则它可以正常工作。如何正确返回JSON对象?

我的AJAX请求:

// prepare the form when the DOM is ready 
$(document).ready(function() { 
var options = { 
    target:        '#output1',   // target element(s) to be updated with server response 
    beforeSubmit:  showRequest,  // pre-submit callback 
    success:       showResponse,  // post-submit callback 
    error: showResponse
}; 

// bind form using 'ajaxForm' 
$('#myForm').ajaxForm(options); 
}); 

// pre-submit callback 
function showRequest(formData, jqForm, options) { 

alert('About to submit: \n\n' + queryString); 

return true; 
} 

// post-submit callback 
function showResponse(responseText, statusText, xhr, $form)  { 


alert('status: ' + statusText + '\n\nresponseText: \n' + responseText + 
    '\n\nThe output div should have already been updated with the responseText.'); 
    console.log(responseText);
} 

1 个答案:

答案 0 :(得分:0)

经过研究,我的问题是我无法使用AJAX上传文件。我不得不使用隐藏的iframe来解决问题。