python - flask_socketio使用uswgi启动访问socketio会400错误
PHP中文网
PHP中文网 2017-04-18 09:55:46
0
1
896

python依赖:

  1. flask

  2. flask_socketio

  3. uwsgi

  4. gevent

/web/__init__.py

from flask import Flask
from flask_socketio import SocketIO, emit
app = Flask(__name__)
socket_io = SocketIO(app)

@socket_io.on('test')
def handle_my_custom_event(json):
    print(json)
    emit('my response', json)

/web/static/index.html

<script type="text/javascript" src="./socket.io.min.js"></script>
<script type="text/javascript" charset="utf-8">
    var socket = io.connect('http://' + document.domain + ':' + location.port);
    socket.on('connect', function() {
        socket.emit('test', {data: 'I\'m connected!'});
    });
</script>

/run.sh

#!/bin/sh
uwsgi --http :8000 --gevent 1000 --http-websockets --master --module web --callable app

然后访问http://127.0.0.1:8000/static/index.html。抓包400错误无法访问socket.io

上的使用方法来自flask_socketio文档。其中下面的使用nginx代理的方式也用过了。没有用一样是400。

上面的uwsgi只能在linux上用。。我全部都是在docker中做的测试。

PHP中文网
PHP中文网

认证0级讲师

全部回复(1)
黄舟

uwsgi 不是了解。
我用的是Gunicorn,也遇到相同问题。
查看文档后使用自定义gevent web server解决了。

When using gunicorn with the gevent worker and the WebSocket support provided by gevent-websocket, the command that starts the server must be changed to select a custom gevent web server that supports the WebSocket protocol. The modified command is:
gunicorn -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 module:appgunicorn -k geventwebsocket.gunicorn.workers.GeventWebSocketWorker -w 1 module:app

pip install gevent-websocket

pip install gevent-websocket🎜
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!