0

我正在尝试通过编写在 JS 文件中的 xmlHttpRequest.send(params) 将一些参数发送到我的 servlet,在那里我尝试通过 req.getParameter("some_Parameter"); 获取参数 它在 servlet 上返回 null。虽然如果我通过将参数附加到 url 来发送参数,它工作正常。但是当 url 很大时,它会破坏代码。所以请有人帮助我。

提前致谢。

function doHttpPost(theFormName, completeActivity) 
{ 
    var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); 
    var xmlMessage = buildPOST(theFormName, completeActivity); 
    var responseTxt; 
    try { 
        xmlhttp.Open(document.forms[theFormName].method, document.forms[theFormName].action+'?'+xmlMessage, false); 
        xmlhttp.onreadystatechange=function() { 
            if (xmlhttp.readyState==4) { 
                responseTxt = xmlhttp.responseText; 
            } 
        } 
        xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
        enableDisableLinks(true);
        setPointer();  
        xmlhttp.Send(); 
        if(xmlhttp.Status != 200) { 
            alert("Post to server failed"); 
        } 
    } catch (e) { 
        responseTxt = "Exception while posting form data: Error No: " + e.number + ", Message: " + e.description; 
    } 

    resetPointer();  
    enableDisableLinks(false);
    var expectedTxt = "Form Data had been successfully posted to the database." 
    if(responseTxt.toString() == expectedTxt.toString()) { 
        // MNP: New requirement from Jeanne, should not refresh CM page, commenting it off for now
        //if(completeActivity) {
        //  if (typeof (ViewCaseDetailBtn) != 'undefined') {
        //      ViewCaseDetailBtn.click();
        //  }
        //}
        return true; 
    } else {
        alert (responseTxt); 
    }
    return false; 
}
4

1 回答 1

1

错误

//IE only - shooting yourself in the
// Not all IE versions use ActiveX!
var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");    foot. 

//JavaScript case sensitive, open !== Open
xmlhttp.Open(document.fo...

//JavaScript case sensitive, send !== Send
xmlhttp.Send();

//JavaScript case sensitive, status !== Status
xmlhttp.Status

如果您使用同步,它不会调用 onreadystatechange。

如果您使用 POST,则该值必须send("valuestosendup")不在查询字符串中。

这段代码说明了为什么您应该真正使用框架来进行 Ajax 调用而不是自己进行调用。

于 2013-01-25T15:03:18.017 回答