1

我有一个 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 中工作,我缺少什么?

4

2 回答 2

3

我实际上找到了导致问题的原因 - 这是由于 ajax 请求被激活下载文件的链接中断。通过单击链接触发 ajax 请求。错误消息的请求状态为 0,这意味着链接操作显然中断了 ajax 请求。由于某种原因,显然在 IE 中请求没有被中断,但它在 firefox、safari 和 chrome 中,因此出现错误消息。我在这里找到了相关信息:链接

在测试了通过简单的按钮单击而不是链接触发的 ajax 请求之后,我知道情况就是这样。当通过简单的按钮单击触发时,它在所有浏览器中都能成功运行,没有错误消息。

解决方法是不使用 AJAX,而是将用户发送到记录点击的服务器端页面,然后重定向到相应的下载链接。

于 2012-06-06T21:31:04.060 回答
1

您的 Ajax 请求使用 POST 但不发布任何数据。您传递的数据是通过您的 URL 请求参数。

尝试将您的 ajax 类型更改为 GET

type: "GET",      
url: "/validate/softwareDownloadedCustomer.asp?custID=<%=custID%>&fileName=" + theFileName, 

或通过发布数据传递您的参数

var dataToPost = 'custID=<%=custID%>&fileName=' + theFileName;

type: "POST",      
url: "/validate/softwareDownloadedCustomer.asp", 
data : dataToPost,
于 2012-06-06T12:32:37.963 回答