MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Ruheruf nicht möglich

Machen Sie es nicht unnötig kompliziert.

 $(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");
     }

   });
 });

Aber Sie haben erwähnt, dass der zurückgegebene Datentyp JSON ist, stellen Sie sicher, dass Sie ihn parsen oder dataType:json entfernen .