tomaytotomato
tomaytotomato

Reputation: 4028

"Undefined" error response from AJAX JQUERY call to XML file

I am doing a prototype that will fetch a variety of XMLs from a web resource location and then display them on the DOM.

Here is the function

    function readXML()
{
    $.ajax({
        type: "GET",
        url: "https://collaboratewiki.com/wikiattachments/61736956/engineer.xml",
        dataType: "xml",
        success: function(xml) 
        {
            window.alert("success")
        },
        error: function(xhr,err)
        {
            alert("readyState: "+err.readyState+"\nstatus: "+err.status);
            alert("responseText: "+err.responseText);
        }
});


}

When I call this function it goes to the error case but I get "Undefined" in my message output.

enter image description here

I need to find out why I can't fetch my XML but with this output its not helpful at all.

How do I get all the details of the error that is happening with the AJAX call?

I have tried instead of "err.responseText" , "xhr.responseText" but I still get the undefined.

Thanks

Upvotes: 2

Views: 19946

Answers (2)

sorena
sorena

Reputation: 11

                $("#box #tozihat .x1").click(
                function()
                {
                    var id=0
                    var length='';
                    id=$(this).attr('id');
                    length=$("#bordersabad #"+id+"").length;



                    $.ajax({
                        type:'post',
                        url:"sabad.php",
                        data:{idmahsool:id}
                        })
                        .done(function(){

                            if(length==1){
                                var tedad=0;
                                tedad=$("#bordersabad #"+id+"#tedad").html();
                                alert(tedad);
                            }
                            else
                            {
                            }

                        })

                })

Upvotes: 1

Anthony Grist
Anthony Grist

Reputation: 38345

From the documentation:

error

Type: Function( jqXHR jqXHR, String textStatus, String errorThrown )

The second and third arguments are strings, not objects, so they won't have additional properties on them. Some of the ones you're trying to get (such as readyState) will be available from the xhr object in your code, rather than from err (which is just a string).

You may want to try something like this:

error: function(xhr,textStatus,err)
{
    console.log("readyState: " + xhr.readyState);
    console.log("responseText: "+ xhr.responseText);
    console.log("status: " + xhr.status);
    console.log("text status: " + textStatus);
    console.log("error: " + err);
}

Upvotes: 9

Related Questions