似乎这种类型的问题已经被问过并回答了很多次,但我似乎无法让它发挥作用,即使经过数小时的尝试不同的事情。
这是我的ajax:
$.ajax({
type: 'POST',
url: 'scripts/manageHomePage.php',
//datatype: 'json',
data: dataString,
cache: false,
success: function(response) {
//$.parseJSON(response);
alert('response: ' + response);
//alert('Got a successful return: ' + response.result);
//window.location.href="documents/" + response.result;
},
error: function(response) {
alert ('There was an error creating the archive: ' + response);
}
});
如您所见,我也一直在尝试使用 json 来执行此操作。这是返回数据的php代码:
if ($zipArchive) {
$log->lwrite('passing to ajax function: ' . $archiveName);
//$return['error'] = true;
//$return['result'] = $archiveName;
return $archiveName;
} else {
$log->lwrite('Error creating zip file - not passed to form');
//$return['error'] = false;
//$return['result'] = 'There was an error creating the zip file';
return 'error';
}
再次,对 json 的更多尝试。无论如何,php 脚本返回的变量 $archiveName 是正确的。我在 $.ajax 的成功参数中的 js 警报显示“响应:”
我究竟做错了什么?