Flask和SocketIO有许多可用的教程,对于我了解的简单线程方法,我找不到任何教程。但是我确实阅读并关注了其中许多内容。 我想使用websockets在网页上显示我的Python应用程序,这是一种实时监控。这是我试图了解如何执行此操作。
我当前拥有的代码正在工作,除了发射部分。似乎没有任何数据传输。我想知道为什么。
socket.on('tingeling' ...
没有被触发。
我的Python代码,大部分来自https://codeburst.io/building-your-first-chat-application-using-flask-in-7-minutes-f98de4adfa5d
from flask import Flask, render_template
from flask_socketio import SocketIO
app = Flask(__name__)
app.config['SECRET_KEY'] = ''
socketio = SocketIO(app)
thread = None
def counter():
print("counter ding")
counting = 0
while True:
counting += 1
socketio.sleep(2)
socketio.emit('tingeling', counting, namespace='')
print(f"Counter: {counting}")
@app.route('/')
def sessions():
print('route')
return render_template('index.html')
@socketio.on('my event')
def connected(data):
print('my event')
@socketio.on('connect')
def starten():
print("connect")
socketio.emit('tingeling', 'start')
global thread
if thread is None:
print('thread ding')
thread = socketio.start_background_task(target=counter())
return render_template('index.html')
if __name__ == '__main__':
socketio.run(app, debug=True)
还有我的HTML模板:
<!DOCTYPE html>
<html lang="en">
<head>
<title>fristi</title>
</head>
<body>
<h3 style='color: #ccc;font-size: 30px;'>waiting</h3>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.7.3/socket.io.min.js"></script>
<script type="text/javascript">
var socket = io.connect('http://' + document.domain + ':' + location.port);
console.log('doet iets')
socket.on( 'connect', function() {
socket.emit( 'my event', {
data: 'User Connected'
})
})
socket.on('tingeling', function(msg) {
console.log('iets komt binnen')
console.log(msg)
})
</script>
</body>
</html>
答案 0 :(得分:0)
我的错误在网上:thread = socketio.start_background_task(target=counter())
我引用了该函数作为后台任务运行,但是我在()
中使用了这种表示法,但由于该函数运行该函数并且没有为start_background_task
提供对此的引用,因此不允许使用该符号功能。