我使用socket.io制作了这个服务器当我听一个事件时,我通过这个收到一些数据。此外,我想发出另一个事件,将相同的数据传递给socketIO-client文件。但我无法做到这一点。有什么建议吗?
//片段的server.js文件
socket.on('chatmsg_to_server',function(data) {
console.log("msg from user: ");
console.log(data);
socket.emit('msg_from_node',data);
});
在客户端,我使用socketIO-client创建了这个代码 // client.py文件的代码片段
def doSomething(data):
print "Halloween"
if data in ['hey','hello']:
socketIO.emit('reply_from_client',"hello clienty")
print "hello client"
socketIO.on('msg_from_node', doSomething)
但问题是控件甚至没有输入这个函数doSomething。我该怎么做?