Skip to content

Commit

Permalink
Merge pull request #16 from carmencami/patch-1
Browse files Browse the repository at this point in the history
Update README.es.md
  • Loading branch information
tommygonzaleza authored Jan 15, 2025
2 parents d6c418a + 9564a59 commit 53f2034
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 53f2034

Please sign in to comment.