इसे अनावश्यक रूप से जटिल न बनाएं।
$(document).ready(function () {
$.ajax({
url: "http://127.0.0.1:8300/pods",
method: "GET",
contentType: "application/json",
dataType: "json",
success: function(data){
// But you mentioned that returned data type is JSON, make sure to parse it.
$("#podar").html(data);
},
error: function () {
console.log("Failed node Data");
}
});
});
लेकिन आपने उल्लेख किया है कि लौटाया गया डेटा प्रकार JSON है, इसे पार्स करना सुनिश्चित करें या dataType:json
को हटा दें ।