Intenté acceder a fetch
la URL de un sitio web antiguo y ocurrió un error:
Fetch API cannot load http://xyz.
No 'Access-Control-Allow-Origin' header is present on the requested resource.
Origin 'http://abc' is therefore not allowed access.
If an opaque response serves your needs, set the request's mode to 'no-cors'
to fetch the resource with CORS disabled.
Entendí el mensaje e intenté hacer una solicitud que devuelve una respuesta opaca:
fetch("http://xyz", {'mode': 'no-cors'})
Ok, ahora funciona ... pero no puedo leerlo. = \
¿Cuál es el propósito, entonces, de una respuesta opaca?
Status code
siempre es0
, ¿cómo verificar si tuvo éxito sistatus is never 200
?