Eu tentei fetch
o URL de um site antigo e ocorreu um erro:
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.
Entendi a mensagem e tentei fazer uma solicitação que retorna uma resposta opaca:
fetch("http://xyz", {'mode': 'no-cors'})
Ok, agora funciona ... mas não consigo ler. = \
Qual é o objetivo, então, de uma resposta opaca?
Status code
é sempre0
, como verificar se foi bem sucedido sestatus is never 200
?