fetch
Eski bir web sitesinin URL'sini denedim ve bir hata oluştu:
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.
İletiyi anladım ve opak bir yanıt döndüren bir istek yapmaya çalıştım:
fetch("http://xyz", {'mode': 'no-cors'})
Tamam, şimdi çalışıyor ... ama okuyamıyorum. = \
O zaman opak bir yanıtın amacı nedir?
Status code
her zaman0
, eğer başarılı olup olmadığını nasıl kontrol edilirstatus is never 200
?