如何使用socketio将数据从客户端传递到我的nodejs服务器?

发布于 12-09 14:40 字数 90 浏览 0 评论 0原文

在客户端使用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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薆情海2024-12-16 14:40:48

是的。客户端或服务器端您只需发出事件并处理事件。

客户端:

var socket = io.connect('http://localhost');
socket.emit('my other event', { my: 'data' });

服务器端:

io.sockets.on('connection', function (socket) {
  socket.on('my other event', function (data) {
    console.log(data);
  });
});

Yes. Client side or server side you simply emit events and handle events.

client side:

var socket = io.connect('http://localhost');
socket.emit('my other event', { my: 'data' });

server side:

io.sockets.on('connection', function (socket) {
  socket.on('my other event', function (data) {
    console.log(data);
  });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文