Home > Mobile >  I am getting CORS error while fetching API from Node JS
I am getting CORS error while fetching API from Node JS

Time:09-20

I am getting issue while fetching Node API using GET method. This issue is related to CORS but don't know how to resolve it. Here is the screenshot of the error which i am getting.

enter image description here

And here is the react code where I am trying to fetch data from API.

React Code

And here is my node API code.

Node API Code

CodePudding user response:

Allow cors from your Node.JS entry file. npm i cors.Import const cors = require('cors'), With express after asigning express instance to a variable holder. allow express to use cors. app.use(cors())

  • Related