Si hallas alguna incompatibilidad en tu código o trabajo, recuerda probar siempre en un entorno de testing antes añadir el código al trabajo final.
Ejemplo 1: llamada a la API de js
// Create a request variable and assign a new XMLHttpRequest object to it.var request =newXMLHttpRequest()// Open a new connection, using the GET request on the URL endpoint
request.open('GET','https://ghibliapi.herokuapp.com/films',true)
request.onload=function()// Begin accessing JSON data here// Send request
request.send()
Ejemplo 2: llamar a json api javascript
$.getJSON("API URL HERE",function(data)console.log(data);// by printing to the console you can easely check all values in the console//every api related code here...
valoraciones y comentarios
Si te animas, tienes la opción de dejar un artículo acerca de qué te ha gustado de esta sección.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)