const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
Ejecuta fetch y envía request (solicitud).
servicio.php
GET
<?php
echo "Hola";
Despierta y recibe request.
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
Hace wait esperando response.
<?php
echo "Hola";
Procesa la request y genera
la response (respuesta).
El code (o código) 200
indica que terminó
con éxito.
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
Despierta y recibe response.
resp tiene lo mismo
que la response,
pero en un objeto
de JavaScript.
<?php
echo "Hola";
Devuelve response y se duerme.
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
El texto recuperado
queda en la
constante texto.
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}
Hola
const resp =
await fetch("servicio.php")
if (resp.ok) {
const texto =
await resp.text()
alert(texto)
} else {
throw new Error(
resp.statusText)
}