Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

186
Visualizações
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:

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

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

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"
  });
}
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda