javascript - How to resolve CORS error in Fetch API js - Stack Overflow

I want to fetch json from my subdomain (File Hosting Server) , but it gets the following error:Reason:

I want to fetch json from my subdomain (File Hosting Server) , but it gets the following error:

Reason: CORS request did not succeed)

(Reason: CORS header ‘Access-Control-Allow-Origin’ missing

my similar code:

async function getData(url = '', data = {}) {
    const response = await fetch(url, {
    method: 'get',
    mode: 'no-cors',
    headers: {
       'Access-Control-Allow-Origin' : '*'
    },
  });
  return response.json();
}

I add

headers: {
}                               'Access-Control-Allow-Origin' : '*'

but don't work.

I add

mode: no-cors

to code, fetch file but return response status 0 , mode: 'opaque'.

please help me.

I want to fetch json from my subdomain (File Hosting Server) , but it gets the following error:

Reason: CORS request did not succeed)

(Reason: CORS header ‘Access-Control-Allow-Origin’ missing

my similar code:

async function getData(url = '', data = {}) {
    const response = await fetch(url, {
    method: 'get',
    mode: 'no-cors',
    headers: {
       'Access-Control-Allow-Origin' : '*'
    },
  });
  return response.json();
}

I add

headers: {
}                               'Access-Control-Allow-Origin' : '*'

but don't work.

I add

mode: no-cors

to code, fetch file but return response status 0 , mode: 'opaque'.

please help me.

Share Improve this question edited Apr 12, 2024 at 18:27 VLAZ 29.1k9 gold badges63 silver badges84 bronze badges asked Jul 19, 2021 at 15:41 Mahsa azMahsa az 811 gold badge1 silver badge5 bronze badges 4
  • 1 Please add the actual fetch code as a minimal reproducible example? – evolutionxbox Commented Jul 19, 2021 at 15:42
  • Does this answer your question? Enable CORS in fetch api – evolutionxbox Commented Jul 19, 2021 at 15:53
  • 1 You need to add those headers to the server response at url, you can't do it from the fetch request. – James Commented Jul 19, 2021 at 15:56
  • You have to set this header at server in the response. Not in the request. 'Access-Control-Allow-Origin' : '*' – Manish Kumar Commented Jul 19, 2021 at 16:15
Add a ment  | 

3 Answers 3

Reset to default 3

if your host a PHP file file what you went to call in a other PHP file you will need lot of times to add this code in the PHP file thet you want to call at line_2

header("Access-Control-Allow-Origin: *");

I believe you know what you are trying to achieve here. Fetch with CORS use case is very tricky. CORS is driven by server settings. All the headers ACCESS-CONTROL-* are set at the server end.

Access-Control-Allow-Origin is for CORS, and the client honor this header when dealing with the cross-origin request. The server sends this header in the response. From the server end, you have to pass this header. In your response, you have to pass this header.

Access-Control-Allow-Origin: *

Or if you are dealing with credentials (Wild card not supported here):-

Access-Control-Allow-Origin: https://foo.example 

Reference:-

https://developer.mozilla/en-US/docs/Web/HTTP/CORS

https://developer.mozilla/en-US/docs/Web/API/Fetch_API/Using_Fetch

CORS is configured through server-side, so you need to configure on your File Hosting Server

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694036a4491447.html

相关推荐

  • javascript - How to resolve CORS error in Fetch API js - Stack Overflow

    I want to fetch json from my subdomain (File Hosting Server) , but it gets the following error:Reason:

    1天前
    30

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信