如何在没有jQuery的情况下重新编写代码?

时间:2011-03-02 09:14:51

标签: javascript jquery ajax

如何在不使用jQuery的情况下重写此代码?我需要在移动应用程序中执行此操作,我无法使用jQuery。

 $.ajax({
            type: "POST", 
            url:"../REST/session.aspx?_method=put",
            data: JSON.stringify(dataObject, null,4),
            cache: false,
            dataType: "json",
            success: onSuccessLogin,
            error: function (xhr, ajaxOptions){
                    alert(xhr.status + " : " + xhr.statusText);
                }    

        }); 

5 个答案:

答案 0 :(得分:5)

你可以试试这个:

var xmlhttp;
if (window.XMLHttpRequest) { // code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}

xmlhttp.onreadystatechange = function() {
  if (xmlhttp.readyState == 4 && xmlhttp.status != 200) {
    // What you want to do on failure
    alert(xmlhttp.status + " : " + xmlhttp.responseText);
  }
  if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
    // What you want to do on success
    onSuccessLogin();
  }
}

xmlhttp.open("POST", "../REST/session.aspx?_method=put", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.setRequestHeader("Cache-Control", "no-cache"); // For no cache
xmlhttp.send("data=" + JSON.stringify(dataObject, null,4));

至于如何在没有jQuery库的情况下使用javascript做更多的事情,请查看W3Schools AJAX TutorialMozilla - Using XMLHttpRequest

正如duri所说,你必须找到一种方法将dataObject转换为字符串,因为并非所有浏览器都支持JSON对象。

答案 1 :(得分:5)

试试这个

var xmlHttp = createXmlHttpRequestObject();
//retrieves the xmlHttpRequest Object
function createXmlHttpRequestObject()
{
    //will store the refrence to the xmlHttpRequest Object
    var xmlHttp;
    //if running in internet explorer version below 7
    if(window.ActiveXObject)
    {
            try{
                xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch(e){
                xmlHttp = false;
            }
    }
    else
    {
        try{
            xmlHttp = new XMLHttpRequest();
        }
        catch(e){
            xmlHttp = false;
        }
    }
    if(!xmlHttp)
        alert("Error Creating the xmlHttpObject");      
    else
        return xmlHttp;
}

function callThisFunction()
{
    if(xmlHttp.readyState == 4 || xmlHttp.readyState == 0)
    {

            var queryString = JSON.stringify(dataObject, null,4);

            var url = "../REST/session.aspx?_method=put";

            xmlHttp.open("POST", url, true);

            //Send the proper header information along with the request
            xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
            xmlHttp.setRequestHeader("Content-length", queryString.length);
            xmlHttp.setRequestHeader("Connection", "close");

            xmlHttp.onreadystatechange = checkHandleServerResponse;         
            xmlHttp.send(queryString);  
    }
}


function checkHandleServerResponse()
{
    if(xmlHttp.readyState == 4)
    {
        if(xmlHttp.status == 200)
        {
            var JSONFile = 'jsonFormatData = '+xmlHttp.responseText;
            eval(JSONFile);
            if(jsonFormatData.description == 'Success')
            {
                //showDialog('Success','Login Successful','success',3);
                location.href='default.aspx';   
                //setTimeout(function(){location.href='myGrupio.php';},3000);
            }
            else
                showDialog('Error','You Need a Valid Login.','error',3);
        }
        else if(xmlHttp.status == 400)
        {
            setTimeout( function()
                        {
                            alert('you have error');
                        },3000);
        }
        else 
            alert("Error Code is "+xmlHttp.status)
    }
}

答案 2 :(得分:1)

对于Ajax请求本身,请查看XMLHttpRequest对象(special treatment for IE)。

要解析JSON响应(dataType: 'json'),请使用JSON.parse(您可能需要json2.js library)。

答案 3 :(得分:0)

jquery已经是javascript了。这是一个完全用javascript编写的库。所以你可以在每个javascript项目中使用它。如果您想自己编写一个休息客户端,可以查看this article

答案 4 :(得分:0)

你也可以考虑使用jQuery Mobile版 - 非常轻 - 17KB缩小版。 1.0现在是alpha,但我认为它比自烤代码更稳定,更便携。