我有一个 ajax 请求,当单击链接下载文件时会触发该请求。调用服务器端页面,使用访问者下载的客户 ID 和文件名更新数据库。使用 Jquery 1.5.1。这是链接html:
<a href="/downloads/whatever.zip" class="software">click here to download</a>
ajax 请求编写如下,并包含一个函数,用于通知 ajax 请求中是否有错误:
$(document).ready(function() {
//function to alert an error message if request is unsuccessful
function ajaxError(request, type, errorThrown)
{
var message = "There was an error with the AJAX request.\n";
switch (type) {
case 'timeout':
message += "The request timed out.";
break;
case 'notmodified':
message += "The request was not modified but was not retrieved from the cache.";
break;
case 'parseerror':
message += "XML/Json format is bad.";
break;
default:
message += "HTTP Error (" + request.status + " " + request.statusText + ").";
}
message += "\n";
alert(message);
}
$('a.software').click(function() {
//get the path of the link, and just the file name to be stored in the database
var filePath = $(this).attr("href");
var partsArray = filePath.split('/');
var theFileName = partsArray[partsArray.length-1];
$.ajax({
type: "POST",
url: "/validate/softwareDownloadedCustomer.asp?custID=<%=custID%>&fileName=" + theFileName,
success: function(msg) {
alert("Success");
},
error: ajaxError
});
});
});
服务器端代码不是问题,当仅由另一个页面而不是 ajax 请求调用时,它可以按预期工作。奇怪的是,ajax 请求在 Firefox 和 IE 中有效,但在 Chrome 和 Safari 中无效。在 IE 中,会提示“成功”消息并更新数据库。在 Firefox、Chrome 和 Safari 中,我收到的错误消息如下所示:
There was an error with the AJAX request.
HTTP Error (0 error)
即使在 Firefox 中收到错误消息,它也会更新数据库。在 chrome 和 safari 中,收到错误消息并且没有任何更新。
我已经尝试在我的 ajax 调用中使用以下设置,但它似乎在任何浏览器中都没有什么不同:
contentType: "application/json; charset=utf-8",
dataType: "json", 'data'
为了让它在 Safari 和 Chrome 中工作,我缺少什么?