Skip to content

Commit

Permalink
Update README.es.md
Browse files Browse the repository at this point in the history
Se actualiza la "pista" a un fetch call que corresponda con la Api actual
  • Loading branch information
carmencami authored Jan 15, 2025
1 parent 5b9f34c commit 9564a59
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,19 @@ Hay 3 momentos críticos en la línea de tiempo de la aplicación (denominado ti

## 💡 Pista:

Utiliza el siguiente fetch call para sincronizar tus tareas con el servidor cada vez que haya un cambio en la lista.
Utiliza el siguiente fetch call para crear una nueva tarea en el servidor. Recuerda crearte un usuario primero.

```js
fetch('https://playground.4geeks.com/todo/user/alesanchezr', {
method: "PUT",
body: JSON.stringify(todos),
fetch('https://playground.4geeks.com/todo/todos/alesanchezr', {
method: "POST",
body: JSON.stringify(todo),
headers: {
"Content-Type": "application/json"
}
})
.then(resp => {
console.log(resp.ok); // Será true si la respuesta es exitosa
console.log(resp.status); // El código de estado 200, 300, 400, etc.
console.log(resp.status); // El código de estado 201, 300, 400, etc.
console.log(resp.text()); // Intentará devolver el resultado exacto como string
return resp.json(); // Intentará parsear el resultado a JSON y retornará una promesa donde puedes usar .then para seguir con la lógica
})
Expand Down

0 comments on commit 9564a59

Please sign in to comment.