flask-sockets

    4熱度

    1回答

    我正在使用websockets來查看是否可以將輪詢更新替換爲項目。我正在使用Flask-Sockets,我想通過Flask視圖發出更新。 例如 from flask import Flask from flask_sockets import Sockets app = Flask(__name__) sockets = Sockets(app) @sockets.route('/ec

    7熱度

    3回答

    我試圖使用Flask-Sockets與示例代碼: sockets = Sockets(app) @sockets.route('/echo') def echo_socket(ws): while True: message = ws.receive() ws.send(message) 不幸的是,當只是要在URL /回聲使用我的瀏覽器它給了我一個錯誤說

    0熱度

    1回答

    我正在玩zeromq酒吧/子消息發送到瀏覽器與WebSocket。下面的「作品」中,通過websocket發送消息。然而,試圖重新加載頁面只是掛起,因爲我猜while True循環被阻止。我認爲gevent.sleep()調用將允許上下文切換,但顯然不是。任何想法如何讓所有這些部分一起工作? import zmq import json import gevent from flask_so

    1熱度

    1回答

    我試圖在現有的燒瓶平靜應用中將websocket設置爲20秒。我決定使用瓶子插槽擴展,除了20秒後greentlet會超時之外,事情進展順利。 我假設websocket連接被視爲一個普通的http請求,所以它期望返回一個響應util greenlet超時。 添加以下代碼,改變了gunicorn worker_class到geventwebsocket.gunicorn.workers.Gevent

    0熱度

    1回答

    沒有收到消息 我想實現一個FlaskSocketIO與前端和我的網絡套接字服務器之間socket.io.js應用實時通信 的前端代碼看起來像這樣: $(document).ready(function() { namespace = '/test'; var socket = io.connect('http://' + document.domain + ':' + lo

    0熱度

    1回答

    我正在試驗Flask-Sockets。過去增加了對藍圖的支持,這是我真正需要的。 from flask import Flask, request, abort, redirect, url_for, render_template, make_response, Response, jsonify, session import json #Importing blueprints fr

    4熱度

    2回答

    我正在使用Nginx + flask-socketio + aws elb,並在https上加載URL時我收到以下錯誤消息,它與Nginx的插座,請在這方面的幫助, socket.io.min.js:2 Mixed Content: The page at 'https://localhost/' was loaded over HTTPS, but requested an insecure X

    2熱度

    1回答

    我試圖從服務器作爲客戶端推送;用我的測試客戶端如下: 客戶: socket_client = socketio.test_client(app) @socketio.on('hit_client') def recieve_message(json_data): print("Server has called!") 服務器: socketio.emit('hit_client'