简体   繁体   中英

I am getting CORS error while fetching API from Node JS

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.

在此处输入图像描述

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

反应代码

And here is my node API code.

节点 API 代码

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())

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM