मैंने 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
?