gpt4 book ai didi

javascript - 为什么我的异步 (NodeJS-Python) WebSocket 没有立即连接?

转载 作者:行者123 更新时间:2023-12-02 14:50:01 25 4
gpt4 key购买 nike

这是我之前提出的问题的延续,Using Socket IO and aiohttp for data transfer between node JS and Python ,基于本教程,https://tutorialedge.net/python/python-socket-io-tutorial/ .

我有一个连接 Node JS 客户端 (send.js) 和 python 服务器 (receive.py) 的异步隧道。现在send.js输出一个随机数,然后将其发送到Python服务器(receive.py),然后Python服务器将消息发送回JS客户端。

设置有效,但是,服务器需要几分钟才能开始从 send.js 接收数据,我不知道为什么。

Node JS 脚本将输出数据,但服务器至少在几分钟内不会接收到它,即使在它开始接收数据后,它也不会接收到之前未获取到的数据,它只会接收到数据从服务器和客户端终于可以连接的那一刻起。

我不确定这是否与 Python 端、Node JS 端或其他方面有关。

我使用的是 Node 8.16.1 和 Python 3.7.3

代码如下:

send.js

const io = require('socket.io-client');
const socket = io('http://localhost:8080');

socket.on('reply', message => {
console.log('Got from server: ');
console.log(message);
});

function generateNumber() {
const n = Math.floor(Math.random() * 50);
return { number: n };
}

function sendMsg() {
const json = generateNumber();
console.log('Sending to server:');
console.log(json);

socket.emit('message', json);
}

function loop() {
const rand = Math.round(Math.random() * (3000 - 500)) + 500;
setTimeout(() => {
sendMsg();
loop();
}, rand);
}

socket.on('connect', () => {
console.log('Connected to server');
loop();
});

receive.py

from aiohttp import web
import socketio

# creates a new Async Socket IO Server
sio = socketio.AsyncServer()
# Creates a new Aiohttp Web Application
app = web.Application()
# Binds our Socket.IO server to our Web App
# instance
sio.attach(app)

# If we wanted to create a new websocket endpoint,
# use this decorator, passing in the name of the
# event we wish to listen out for
@sio.on('message')
async def print_message(sid, message):
# When we receive a new event of type
# 'message' through a socket.io connection
# we print the socket ID and the message
#print("Socket ID: " , sid)
print(message)
await sio.emit('reply', message)

# We kick off our server
if __name__ == '__main__':
web.run_app(app)

如果需要更多信息,请告诉我。

最佳答案

我不知道您是否必须使用您正在使用的软件包,但这是我的工作版本,其中包含用于 Node 和 asynciows 软件包python 的 websockets 包。有乐趣和好问题。

send.js

const WebSocket = require('ws');


const ws = new WebSocket('ws://localhost:8080')
console.log(ws)

function generateNumber() {
const n = Math.floor(Math.random() * 50);
return {
number: n
};
}

function sendMsg() {
const json = JSON.stringify(generateNumber());
console.log('Sending to server:');
console.log(json);

ws.send(json);
}

function loop() {
setTimeout(() => {
sendMsg();
loop();
}, 5000);
}
ws.on('open', function open() {
console.log('connect')
console.log(ws)
loop()

})

ws.on('message', function(data) {
console.log(data)
})

receive.py

import asyncio
import websockets

async def start(websocket, path):
print("connected")
while True:
data = await websocket.recv()
print(f"< {data}")
await websocket.send(data)

async def main():
server = await websockets.serve(start, 'localhost', 8080)
await server.wait_closed()
asyncio.run(main())

关于javascript - 为什么我的异步 (NodeJS-Python) WebSocket 没有立即连接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59889079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com