Friday, 8 June 2018

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

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print ...