Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

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
      });
Source by jsonplaceholder.typicode.com #
 
PREVIOUS NEXT
Tagged: #json #placeholder
ADD COMMENT
Topic
Name
7+6 =