este video fue hace 1 año y me acaba de ayudar a entender esto
@iceycode.mp3Ай бұрын
good
@fernandocastellanos17222 ай бұрын
Si se actualiza la api en automático se actualizan los datos en el html?
@h4rul0v4 ай бұрын
cómo vas a tener un solo video? es genial tu manera de enseñar
@MrZLheoX4 ай бұрын
Tal cual!
@oigresrol5 ай бұрын
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>
@NIHLgomez9 ай бұрын
muy bueno gracias
@caroocanillas95410 ай бұрын
Me gusta la voz del locutor
@jesusgregoriosola587111 ай бұрын
Debes explicar mejor y de forma más fluida para que sepamos dónde estás. saludos
@mandresblac Жыл бұрын
Buen video
@theniconicole441 Жыл бұрын
Como puedo desplegar los datos de cada uno al darle click?
@GC-mq8gj Жыл бұрын
Te felicito, excelente video. Espero que hagas más.
@arielviale77 Жыл бұрын
Muy Bien explicado!!! Me sumo!! Dale para adelante!!!
@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 Жыл бұрын
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!