12 lines
345 B
JavaScript
12 lines
345 B
JavaScript
self.onmessage = function(e) {
|
|
const table = e.data.table;
|
|
function fetchStats() {
|
|
fetch(`stats_worker.php?table=${encodeURIComponent(table)}`)
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
self.postMessage(data);
|
|
setTimeout(fetchStats, 5000); // Consulta cada 5 segundos
|
|
});
|
|
}
|
|
fetchStats();
|
|
}; |