I am trying to get data from a page that generates the following object displayed as text in the body and pre tag, but it seems not to get all 4 key|value pairs (only 3)???
Please note that I have changed the urls of the jSON output and and removed most of the data to shorten it here. hopefully i didn't introduce any errors.
{"nodes":[{"node":{"title":"NLT bottle 14","bottle_code":"NL_T14","bottle_img":"http:\/\/site.dev\/files\/bottles\/bottleimages\/nlt%20bottle%2014_bottle.jpg","swatch":"http:\/\/site.dev\/files\/bottles\/swatches\/nlt-bottle-14_swatch.jpg"}},{"node":{"title":"DS Bottle 033","bottle_code":"DS_033","bottle_img":"http:\/\/site.dev\/files\/bottles\/bottleimages\/ds%20bottle%20033_bottle.jpg","swatch":"http:\/\/site.dev\/files\/bottles\/swatches\/ds-bottle-033_swatch.jpg"}}]}
I am trying to get it with via:
var url = "http://site.dev/getinfo";
$.ajax({
url: url,
type: "GET",
dataType: "json",
async: true, // false loads and processes the data (function) before rendering the page
success: function(stuff){
console.log(stuff); // <- This output of the stuff object->nodes does not show the swatch key value pair!
process_data(stuff);
},
complete: function(){
doneprocess();
},
error: function(code){
error_get_data(code);
}
});
but I get this without the swatch key|value pair. I do not know why!
{"nodes":[{"node":{"title":"NLT bottle 14","bottle_code":"NL_T14","bottle_img":"http://site.dev/files/bottles/bottleimages/nlt%20bottle%2014_bottle.jpg"}},{"node":{"title":"DS Bottle 033","bottle_code":"DS_033","bottle_img":"http://site.dev/files/bottles/bottleimages/ds%20bottle%20033_bottle.jpg"}}]}
Greatly appreciate your expertise!