Categoría: JavaScript

De enunpimpam
Saltar a: navegación, buscar
(Página blanqueada)
Etiqueta: Vaciado
 
(No se muestran 3 ediciones intermedias del mismo usuario)
Línea 1: Línea 1:
Traer datos con fetch
+
 
<syntaxhighlight lang="js">
 
fetch("https://randomuser.me/api/")
 
  .then(function(response) {
 
    // console.log(response)
 
    return response.json()
 
  })
 
  .then(function (Usuario){
 
    console.log('Todo los datos en Array', Usuario)
 
    console.log('Solo el Nombre:', Usuario.results[0].name.first)
 
  })
 
  .catch(function(response) {
 
  })
 
})</syntaxhighlight>
 

Revisión actual del 16:50 11 ago 2020