Я спробував вказати fetch
URL старого веб-сайту, і сталася помилка:
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.
Я зрозумів повідомлення та спробував зробити запит, який повертає непрозору відповідь:
fetch("http://xyz", {'mode': 'no-cors'})
Гаразд, це зараз працює ... але я не можу його прочитати. = \
Яка мета непрозорого відгуку?
Status code
завжди є0
, як перевірити, чи було це успішно, якщоstatus is never 200
?