Пікірлер
@kevinmx3519
@kevinmx3519 26 күн бұрын
este video fue hace 1 año y me acaba de ayudar a entender esto
@iceycode.mp3
@iceycode.mp3 Ай бұрын
good
@fernandocastellanos1722
@fernandocastellanos1722 2 ай бұрын
Si se actualiza la api en automático se actualizan los datos en el html?
@h4rul0v
@h4rul0v 4 ай бұрын
cómo vas a tener un solo video? es genial tu manera de enseñar
@MrZLheoX
@MrZLheoX 4 ай бұрын
Tal cual!
@oigresrol
@oigresrol 5 ай бұрын
asi lo corrigio chatgpt const apiUrl = 'rickandmortyapi.com/api/character'; function makeCard(character){ const { name, status, image } = character; // Corregido aquí const cardsContainer = document.querySelector('.cards-container'); const title = document.createElement("h5"); title.textContent = name; const characterStatus = document.createElement("p"); characterStatus.textContent = status; if(status == "Alive") characterStatus.style.color = 'green'; else characterStatus.style.color = "gray"; const characterImage = document.createElement("img"); characterImage.src = image; characterImage.width = 200; // Corregido aquí, debe ser un número const card = document.createElement("div"); card.className = "card"; // Añadir clase para estilo card.appendChild(title); card.appendChild(characterImage); card.appendChild(characterStatus); card.style.backgroundColor = 'blue'; cardsContainer.appendChild(card); } async function getCharacters(){ try{ const response = await fetch(apiUrl); const result = await response.json(); for(let i = 0; i < result.results.length; i++){ // Corregido aquí makeCard(result.results[i]) } }catch(error){ console.error(error); } } getCharacters(); </script>
@NIHLgomez
@NIHLgomez 9 ай бұрын
muy bueno gracias
@caroocanillas954
@caroocanillas954 10 ай бұрын
Me gusta la voz del locutor
@jesusgregoriosola5871
@jesusgregoriosola5871 11 ай бұрын
Debes explicar mejor y de forma más fluida para que sepamos dónde estás. saludos
@mandresblac
@mandresblac Жыл бұрын
Buen video
@theniconicole441
@theniconicole441 Жыл бұрын
Como puedo desplegar los datos de cada uno al darle click?
@GC-mq8gj
@GC-mq8gj Жыл бұрын
Te felicito, excelente video. Espero que hagas más.
@arielviale77
@arielviale77 Жыл бұрын
Muy Bien explicado!!! Me sumo!! Dale para adelante!!!
@karencampo1052
@karencampo1052 Жыл бұрын
Excelente video, Tengo un error :( me podrias guiar con un error que me resulto Type Error: Cannot read properties of undefined (reading 'length') at getCharacters
@argencode
@argencode Жыл бұрын
Deberías fijarte de que en el "results" estés recibiendo un arreglo de los personajes. Ese error es muy común y sin ver el código imagino que debe ser porque te está devolviendo null la petición a la API. Saludos!
@abrilrodriguez9246
@abrilrodriguez9246 Жыл бұрын
Que genio, subi más videos ❤
@fergomez8866
@fergomez8866 Жыл бұрын
Muy Buen vídeo y bien explicado!!!
@juanlucascuenca2134
@juanlucascuenca2134 Жыл бұрын
exelente video
@xhuaperaza1874
@xhuaperaza1874 Жыл бұрын
Grande capito
@SrElmoGamer
@SrElmoGamer Жыл бұрын
Amigo eres un grande que lo sepas