Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

How to access 'Object' portion of JSON using Jquery?

I used console.table(someData) to output the object shows in the attaches image.

I used the following code to get the data:

var someData = GetJson('someurlthatreturnsjson');

function GetJson(Url) {
    return $.ajax({
        url: Url,
        xhrFields: {
            withCredentials: true
        },
        dataType: "json"
    });
}

I tried:

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

var x = someData.readyState;  // 1 was returned as expected.
var y = someData.Object;      // undefined.
...so...
var z = someData.Object.responseJSON; // also undefined?

So how would I access elements within the Object portion of this json? Am I missing something?

enter image description here

>Solution :

As you return the $.ajax() call from getJSON(), the someData variable will contain the Deferred object containing the reference to the AJAX call.

To retrieve the response from that call from the Deferred object you can use any of the methods outlined in the documentation I linked to. I would suggest using then() in this case, as the handler function you define will receive the response as the first argument to the function, like this:

var someData = GetJson('someurlthatreturnsjson').then(response => {
  // do something with the response here...

  console.dir(response);
});

function GetJson(Url) {
  return $.ajax({
    url: Url,
    xhrFields: {
      withCredentials: true
    },
    dataType: "json"
  });
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading