Próbowałem fetch
otworzyć adres URL starej witryny i wystąpił błąd:
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.
Zrozumiałem wiadomość i próbowałem wykonać żądanie, które zwraca nieprzejrzystą odpowiedź:
fetch("http://xyz", {'mode': 'no-cors'})
Ok, teraz działa ... ale nie mogę tego przeczytać. = \
Jaki jest zatem cel nieprzejrzystej odpowiedzi?
Status code
zawsze jest0
, jak sprawdzić, czy się udało, czystatus is never 200
?