-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRss_prueba.html
50 lines (46 loc) · 1.95 KB
/
Rss_prueba.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Leer RSS con Fetch API</title>
</head>
<body>
<h1>Noticias desde el RSS de misitio.com</h1>
<div id="rss-contenido">Cargando contenido RSS...</div>
<script>
function obtenerRSS() {
fetch('https://misitio.com/rss.xml')
.then(response => {
if (!response.ok) {
throw new Error('Error en la respuesta de la red');
}
return response.text();
})
.then(str => (new window.DOMParser()).parseFromString(str, "text/xml"))
.then(data => {
const items = data.querySelectorAll("item");
let htmlContent = '<ul>';
items.forEach(el => {
const title = el.querySelector("title").textContent;
const link = el.querySelector("link").textContent;
const description = el.querySelector("description").textContent;
htmlContent += `
<li>
<h2><a href="${link}" target="_blank">${title}</a></h2>
<p>${description}</p>
</li>`;
});
htmlContent += '</ul>';
document.getElementById('rss-contenido').innerHTML = htmlContent;
})
.catch(error => {
console.error('Hubo un problema con la operación de fetch:', error);
document.getElementById('rss-contenido').innerHTML = 'Error al cargar el contenido RSS.';
});
}
// Llama a la función para obtener el contenido RSS al cargar la página
window.onload = obtenerRSS;
</script>
</body>
</html>