簡體   English   中英

沒有響應發送時,ajax.responseText的值是什么?

[英]What is the value of ajax.responseText when there is no response being sent?

我寫了一個JavaScript函數,用於檢查用戶名在數據庫中是否可用。 如果用戶名不可用,則ajax發送回文本響應,該響應會更改某些css並添加錯誤消息。 當用戶名可用時,ajax不會發送響應,這很好,但是我只需要知道從ajax.responseText返回什么,因為沒有值。 我試過''和null。

function _(x) {
return document.getElementById(x);
}

function ajaxObj(meth, url) {
var x = new XMLHttpRequest(); 
x.open( meth, url, true );  
x.setRequestHeader("Content-type", "application/x-www-form-urlencoded"); 
return x;
}
function ajaxReturn(x) {
if(x.readyState == 4 && x.status == 200) {
    return true;
    }
}
function verifyEmail(){

var email = _("email").value;
var status = _("estatus");     
var emailRegEx = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;


if (document.signupform.email.value.search(emailRegEx) == -1) {
    _("emaildiv").style.border = "1px solid #d33e3e";
    _("emaildiv").style.backgroundColor = "#fadede";
    status.innerHTML = "<br />Please enter a valid email address";
 } else {
    _("emaildiv").style.border = "";
    _("emaildiv").style.backgroundColor = "";
    status.innerHTML = "";

    if (email != "") {
        status.innerHTML = "checking. . . "; 
        var ajax = ajaxObj("POST", "fan_signup_local.php");    
        ajax.onreadystatechange = function() {
            if (ajaxReturn(ajax) == true) {
                status.innerHTML = ajax.responseText;
                console.log(status.innerHTML);
                if (status.innerHTML !== '') {
                    _("emaildiv").style.border = "1px solid #d33e3e";
                    _("emaildiv").style.backgroundColor = "#fadede";
                    console.log(ajax.responseText);
                } else {
                    _("emaildiv").style.border = "";
                    _("emaildiv").style.backgroundColor = "";
                }
            }
        }
        ajax.send("email="+email);
    }
 }
}

除非請求超時,否則總會有一個響應。 如果服務器腳本退出而未打印任何內容,則響應將為空字符串。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM