-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.php
83 lines (77 loc) · 2.95 KB
/
index.php
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Todo List actualizble mediante botón</title>
</head>
<body>
<label for="content">Nueva tarea</label>
<input type="text" id="content" placeholder="Ingresa una tarea"><br>
<button id="guardar">Guardar</button>
<?php
require "DB.php";
require "todo.php";
try {
$db = new DB;
echo "<h2>TODO</h2>";
echo "<ul id=\"lista\">";
$todo_list = Todo::DB_selectAll($db->connection);
foreach ($todo_list as $row) {
echo "<li>". $row->getItem_id() .". ". $row->getContent() . " <button onclick='borrar(".$row->getItem_id().")' >X</button></li>";
}
echo "</ul>";
}
catch (PDOException $e) {
print "Error!: " . $e->getMessage() . "<br/>";
die();
}
?>
<script>
function llamada_a_controller(metodo,postData){
const url = 'http://todo.cierva/controller.php';
// Limpiar la tabla antes de agregar los nuevos datos
const lista = document.getElementById('lista');
lista.innerHTML = ''; // Eliminar el contenido previo de la tabla
// La respuesta es un array de objetos JSON
fetch(url, {
method: metodo,
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(postData)
})
.then(response => response.json()) // Convertir la respuesta a JSON
.then(data => {
data.forEach(item => {
var li = document.createElement("li");
li.appendChild(document.createTextNode(item.item_id+". "+item.content+" "));
var button = document.createElement("button");
button.textContent ="X";
button.setAttribute("onclick","borrar("+item.item_id+")");
li.appendChild(button);
lista.appendChild(li);
});
})
.catch(error => console.error('Error en la solicitud POST:', error));
}
function borrar(item_id) {
const postData = {
item_id: item_id
};
llamada_a_controller("DELETE",postData);
}
document.getElementById('guardar').addEventListener('click', function () {
const contenido = document.getElementById('content').value;
if (!contenido) {
alert('Por favor, introduce un valor.');
return;
}
const postData = {
content: contenido
};
llamada_a_controller("POST",postData);
});
</script>
</body>
</html>