如何使用socketio将数据从客户端传递到我的nodejs服务器?
在客户端使用socketio,在服务器端使用nodejs和socketio,我将如何将数据从客户端传递到服务器?我会在客户端使用带有socketio的emit函数吗?
Using socketio on the client side and nodejs with socketio on the server side, how would I go about passing data from the client side to the server? Would I use an emit function with socketio on the client side?
是的。客户端或服务器端您只需发出事件并处理事件。
客户端:
服务器端:
Yes. Client side or server side you simply emit events and handle events.
client side:
server side: