Wednesday, November 13, 2019

javascript - console.log(result) returns [object Object]. How do I get result.name?

My script is returning [object Object] as a result of console.log(result).




Can someone please explain how to have console.log return the id and name from result?



$.ajaxSetup({ traditional: true });

var uri = "";

$("#enginesOuputWaiter").show();
$.ajax({
type: "GET",

url: uri,
dataType: "jsonp",
ContentType:'application/javascript',
data :{'text' : article},
error: function(result) {
$("#enginesOuputWaiter").hide();
if(result.statusText = 'success') {
console.log("ok");
console.log(result);
} else {

$("#enginesOuput").text('Invalid query.');
}
}
});

No comments:

Post a Comment

hard drive - Leaving bad sectors in unformatted partition?

Laptop was acting really weird, and copy and seek times were really slow, so I decided to scan the hard drive surface. I have a couple hundr...