Answers for "json placeholder"

1

jsonplaceholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on July-25-2020
2

dummy api json

var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
    console.log(xhr.responseText);
};
xhr.send();
Posted by: Guest on April-14-2020
2

json placeholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on December-12-2019
2

json placeholder

axios
      .get("https://jsonplaceholder.typicode.com/posts")
      .then(function (response) {
    	 console.log(response);
      })
      .catch(function (error) {
        // handle error
        console.log(error);
      })
      .then(function () {
        // always executed
      });
Posted by: Guest on December-18-2020
0

json placeholder

fetch('https://jsonplaceholder.typicode.com/todos/2')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on January-12-2021
0

json placeholder

fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
fetch('https://jsonplaceholder.typicode.com/todos/1')
  .then(response => response.json())
  .then(json => console.log(json))
Posted by: Guest on June-30-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language