Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

javascript - Access to XMLHttpRequest from origin has been blocked by CORS policy. CORS issue with hosting React chat app

I'm having some issues deploying my web socket app online. I've used Heroku to host the server and Netlify for the client. I'm getting the below error when I try sending a chat.

Screenshot of error

Here is my server code:

const express = require("express");
const http = require("http");
const app = express();
const server = http.createServer(app);
// const socket = require("socket.io");
const io = socket(server);
const cors = require("cors");
require("dotenv").config();
app.use(cors());

const io = require("socket.io")(httpServer, {
    cors: {
      origin: "https://webchat-socketio.netlify.app/",
      methods: ["GET", "POST"]
    }
  });


const PORT = 7777;
io.on("connection", socket => {
    socket.emit("your id", socket.id);
    socket.on("send message", body => {
        io.emit("message", body)
    })
})


server.listen(process.env.PORT || PORT, () => console.log("server is running online"));

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...