302暂时移动15ms

时间:2010-03-02 16:47:29

标签: php jquery email

我有以下PHP代码

      if(mail($ToEmail, $Subject, $Content, $Headers) == false) {
         echo "Error While Sending Email to : ".$ToEmail;
         }else{ 
         echo "Email Send Successfully to: ".$ToEmail; ;
         }

我从像这样的jquery中调用这个php代码

       var uemail="abc@domain.com,xyz@domain.com,gty@domain.com";

         uemail = uemail.split(',');

var interval;
var counter = 0;
var check = function() { 
                        if(counter < uemail.length) {
                            // Send email post 
                            counter++; 
                        } else {
                            clearInterval(interval);
                        }
            };

interval = setInterval(check,10000);

在第二次执行后,它显示302在萤火虫和用户loogoff中暂时移动了15ms

由于

1 个答案:

答案 0 :(得分:1)

当AJAX回调方法没有收到预期的响应时,您获得的错误将被抛出客户端。

如果超时,则AJAX将抛出302。我相信除了200响应之外的任何事情都会触发302。

要测试错误,请尝试在JavaScript中添加与此类似的内容:

if(responseText.indexOf('<body') != -1) {

// a 302 redirection happened
}