【问题标题】:how to allow cors-origin-policy in python flask socketio from react如何从反应中允许python烧瓶socketio中的cors-origin-policy
【发布时间】:2021-07-07 06:16:34
【问题描述】:

这是我的 server.py 文件。我已经使用 socketio 从反应应用程序中调用。

async_mode = None
app = Flask(__name__)
app.debug = True
app.config['SECRET_KEY'] = 'nuttertools'
Session(app)
CORS(app)
cors = CORS(app, resources={r"*": {"origins": "*"}})

# socketio = SocketIO(app, manage_session=False, async_mode=async_mode)
socketio = SocketIO(app, manage_session=False, async_mode=async_mode, cors_allowed_origins='*')

@socketio.on('message', namespace='/chat')
def chat_message(message):
    print("message =!! ", message)
    test_message = message
    print("test message ", test_message)

    emit('message', {'data': test_message['data']}, broadcast=False)

if __name__ == '__main__':
    socketio.run(app, host=host, port=port, debug=True)

但是当我从 react 应用程序调用这个 socketio 时,我收到以下错误。

Access to XMLHttpRequest at 'http://localhost:5003/socket.io/?EIO=3&transport=polling&t=NZ4y_ZW' from origin
 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.

我的反应代码如下:

const serverHost = window.location.hostname;
const serverPort = 5003;
const serverUrl = `http://${serverHost}:${serverPort}/chat`;
console.log(serverUrl);

class App extends Component {
    constructor(props) {
        super(props);
        // this.completeChange = this.completeChange.bind(this);
        this.state = {
            userMessage: '',
            conversation: [{
                text: "Please enter your mobile number",
                user: 'ai',
            }],
            socket: io(serverUrl),
            childVisible: false,
            show: false,
            selectedValue: undefined,
            radioOptions: [],
            headerControler: false,
            mobileNoTaken: false
        };
    }

如何解决 corse 原产地政策错误?

【问题讨论】:

    标签: reactjs flask socket.io cors flask-cors


    【解决方案1】:

    Cors 错误可以像这样处理

    const io = require("socket.io")(httpServer, {
      origins: ["https://example.com"],
    
      // optional, useful for custom headers
      handlePreflightRequest: (req, res) => {
        res.writeHead(200, {
          "Access-Control-Allow-Origin": "https://example.com",
          "Access-Control-Allow-Methods": "GET,POST",
          "Access-Control-Allow-Headers": "my-custom-header",
          "Access-Control-Allow-Credentials": true
        });
        res.end();
      }
    });
    

    参考:Socket-cors-handling

    【讨论】:

    • 我已经从 python 端处理了 cors 错误。检查一下。
    猜你喜欢
    • 2015-05-25
    • 2020-08-14
    • 1970-01-01
    • 2021-10-09
    • 1970-01-01
    • 2022-09-28
    • 1970-01-01
    • 2016-04-01
    • 2021-08-05
    相关资源
    最近更新 更多